2017-12-07 16:44:24 -05:00
|
|
|
diff --git chrome/renderer/BUILD.gn chrome/renderer/BUILD.gn
|
2023-01-02 18:34:43 -05:00
|
|
|
index 289e3ad2abba4..366a6bf1e42ff 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")
|
2022-07-21 13:26:10 -04:00
|
|
|
@@ -122,6 +123,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",
|
2023-01-02 18:34:43 -05:00
|
|
|
@@ -218,6 +220,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" ]
|
|
|
|
|