2017-12-07 16:44:24 -05:00
|
|
|
diff --git chrome/renderer/BUILD.gn chrome/renderer/BUILD.gn
|
2024-06-14 13:01:45 -04:00
|
|
|
index 3108e12b92e7f..18cc9062a4cd0 100644
|
2017-12-07 16:44:24 -05:00
|
|
|
--- chrome/renderer/BUILD.gn
|
|
|
|
+++ chrome/renderer/BUILD.gn
|
2021-01-27 18:13:12 -05:00
|
|
|
@@ -5,6 +5,7 @@
|
2020-03-03 19:29:39 -05:00
|
|
|
import("//build/config/buildflags_paint_preview.gni")
|
2021-01-27 18:13:12 -05:00
|
|
|
import("//build/config/chromeos/ui_mode.gni")
|
2017-12-07 16:44:24 -05:00
|
|
|
import("//build/config/features.gni")
|
|
|
|
+import("//cef/libcef/features/features.gni")
|
|
|
|
import("//chrome/common/features.gni")
|
|
|
|
import("//components/nacl/features.gni")
|
2018-04-19 11:44:42 -04:00
|
|
|
import("//components/offline_pages/buildflags/features.gni")
|
2024-04-23 16:06:00 -04:00
|
|
|
@@ -136,6 +137,7 @@ static_library("renderer") {
|
2017-12-07 16:44:24 -05:00
|
|
|
deps = [
|
2020-12-02 17:31:49 -05:00
|
|
|
"//base/allocator:buildflags",
|
2021-01-27 18:13:12 -05:00
|
|
|
"//build:chromeos_buildflags",
|
2017-12-07 16:44:24 -05:00
|
|
|
+ "//cef/libcef/features",
|
|
|
|
"//chrome:resources",
|
|
|
|
"//chrome:strings",
|
|
|
|
"//chrome/common",
|
2024-04-23 16:06:00 -04:00
|
|
|
@@ -246,6 +248,10 @@ static_library("renderer") {
|
2017-12-07 16:44:24 -05:00
|
|
|
|
|
|
|
configs += [ "//build/config/compiler:wexit_time_destructors" ]
|
|
|
|
|
|
|
|
+ if (enable_cef) {
|
|
|
|
+ configs += [ "//cef/libcef/features:config" ]
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if (enable_nacl) {
|
2022-04-21 14:58:48 -04:00
|
|
|
deps += [ "//components/nacl/renderer" ]
|
|
|
|
|