41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
diff --git chrome/browser/BUILD.gn chrome/browser/BUILD.gn
|
|
index e0fd47a70c7b..d56e7a6b8bec 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")
|
|
@@ -1725,6 +1726,7 @@ jumbo_split_static_library("browser") {
|
|
"//base:i18n",
|
|
"//base/allocator:buildflags",
|
|
"//cc",
|
|
+ "//cef/libcef/features",
|
|
"//chrome:extra_resources",
|
|
"//chrome:resources",
|
|
"//chrome:strings",
|
|
@@ -2004,6 +2006,10 @@ jumbo_split_static_library("browser") {
|
|
]
|
|
}
|
|
|
|
+ if (enable_cef) {
|
|
+ configs += [ "//cef/libcef/features:config" ]
|
|
+ }
|
|
+
|
|
if (is_android) {
|
|
sources += [
|
|
"after_startup_task_utils_android.cc",
|
|
@@ -3629,7 +3635,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" ]
|
|
}
|
|
|