mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-13 10:06:28 +01:00
46d3a81ba0
- Windows: SDK version 10.0.18362.0 is now required.
32 lines
911 B
Diff
32 lines
911 B
Diff
diff --git chrome/renderer/BUILD.gn chrome/renderer/BUILD.gn
|
|
index 4f3ed79d0500..357a0b260e85 100644
|
|
--- chrome/renderer/BUILD.gn
|
|
+++ chrome/renderer/BUILD.gn
|
|
@@ -4,6 +4,7 @@
|
|
|
|
import("//build/config/features.gni")
|
|
import("//build/config/jumbo.gni")
|
|
+import("//cef/libcef/features/features.gni")
|
|
import("//chrome/common/features.gni")
|
|
import("//components/nacl/features.gni")
|
|
import("//components/offline_pages/buildflags/features.gni")
|
|
@@ -125,6 +126,7 @@ jumbo_static_library("renderer") {
|
|
defines = []
|
|
|
|
deps = [
|
|
+ "//cef/libcef/features",
|
|
"//chrome:resources",
|
|
"//chrome:strings",
|
|
"//chrome/common",
|
|
@@ -190,6 +192,10 @@ jumbo_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",
|