32 lines
1019 B
Diff
32 lines
1019 B
Diff
diff --git chrome/renderer/BUILD.gn chrome/renderer/BUILD.gn
|
|
index 93f57d5fd1f4a..428371b7d7ff8 100644
|
|
--- chrome/renderer/BUILD.gn
|
|
+++ chrome/renderer/BUILD.gn
|
|
@@ -5,6 +5,7 @@
|
|
import("//build/config/buildflags_paint_preview.gni")
|
|
import("//build/config/chromeos/ui_mode.gni")
|
|
import("//build/config/features.gni")
|
|
+import("//cef/libcef/features/features.gni")
|
|
import("//chrome/common/features.gni")
|
|
import("//components/nacl/features.gni")
|
|
import("//components/offline_pages/buildflags/features.gni")
|
|
@@ -120,6 +121,7 @@ static_library("renderer") {
|
|
deps = [
|
|
"//base/allocator:buildflags",
|
|
"//build:chromeos_buildflags",
|
|
+ "//cef/libcef/features",
|
|
"//chrome:resources",
|
|
"//chrome:strings",
|
|
"//chrome/common",
|
|
@@ -211,6 +213,10 @@ static_library("renderer") {
|
|
|
|
configs += [ "//build/config/compiler:wexit_time_destructors" ]
|
|
|
|
+ if (enable_cef) {
|
|
+ configs += [ "//cef/libcef/features:config" ]
|
|
+ }
|
|
+
|
|
if (enable_nacl) {
|
|
deps += [
|
|
"//components/nacl/loader",
|