mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-03-02 02:47:57 +01:00
- Configuration of OSR VSync interval is currently missing (issue #2517) - Rename VERSION to VERSION.in to fix libc++ compile error (issue #2518)
41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
diff --git chrome/browser/BUILD.gn chrome/browser/BUILD.gn
|
|
index 4adc6a2f64cd..bba2ab9a8b0c 100644
|
|
--- chrome/browser/BUILD.gn
|
|
+++ chrome/browser/BUILD.gn
|
|
@@ -8,6 +8,7 @@ import("//build/config/features.gni")
|
|
import("//build/config/jumbo.gni")
|
|
import("//build/config/ui.gni")
|
|
import("//build/split_static_library.gni")
|
|
+import("//cef/libcef/features/features.gni")
|
|
import("//chrome/common/features.gni")
|
|
import("//components/feature_engagement/features.gni")
|
|
import("//components/feed/features.gni")
|
|
@@ -1691,6 +1692,7 @@ jumbo_split_static_library("browser") {
|
|
"//base:i18n",
|
|
"//base/allocator:buildflags",
|
|
"//cc",
|
|
+ "//cef/libcef/features",
|
|
"//chrome:extra_resources",
|
|
"//chrome:resources",
|
|
"//chrome:strings",
|
|
@@ -1966,6 +1968,10 @@ jumbo_split_static_library("browser") {
|
|
]
|
|
}
|
|
|
|
+ if (enable_cef) {
|
|
+ configs += [ "//cef/libcef/features:config" ]
|
|
+ }
|
|
+
|
|
if (is_android) {
|
|
sources += [
|
|
"after_startup_task_utils_android.cc",
|
|
@@ -3552,7 +3558,7 @@ jumbo_split_static_library("browser") {
|
|
]
|
|
}
|
|
|
|
- if (use_aura && !use_ozone && is_desktop_linux) {
|
|
+ if (use_aura && !use_ozone && is_desktop_linux && use_gtk) {
|
|
deps += [ "//chrome/browser/ui/libgtkui" ]
|
|
}
|
|
|