mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-12 09:37:37 +01:00
a584bd187b
- Mac: Xcode 12.2 and the MacOS 11.0 SDK are now required for building. - MacOS 10.10 (Yosemite) is no longer supported (see https://crbug.com/1126056). - Flash is no longer supported (see https://www.chromium.org/flash-roadmap).
41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
diff --git chrome/browser/BUILD.gn chrome/browser/BUILD.gn
|
|
index 16bd4c2717ee..65e309d23866 100644
|
|
--- chrome/browser/BUILD.gn
|
|
+++ chrome/browser/BUILD.gn
|
|
@@ -12,6 +12,7 @@ import("//build/config/crypto.gni")
|
|
import("//build/config/features.gni")
|
|
import("//build/config/linux/gtk/gtk.gni")
|
|
import("//build/config/ui.gni")
|
|
+import("//cef/libcef/features/features.gni")
|
|
import("//chrome/browser/buildflags.gni")
|
|
import("//chrome/browser/downgrade/buildflags.gni")
|
|
import("//chrome/common/features.gni")
|
|
@@ -1912,6 +1913,7 @@ static_library("browser") {
|
|
"//build:chromeos_buildflags",
|
|
"//build/config/compiler:compiler_buildflags",
|
|
"//cc",
|
|
+ "//cef/libcef/features",
|
|
"//chrome:extra_resources",
|
|
"//chrome:resources",
|
|
"//chrome:strings",
|
|
@@ -2424,6 +2426,10 @@ static_library("browser") {
|
|
]
|
|
}
|
|
|
|
+ if (enable_cef) {
|
|
+ configs += [ "//cef/libcef/features:config" ]
|
|
+ }
|
|
+
|
|
if (is_android) {
|
|
sources += [
|
|
"after_startup_task_utils_android.cc",
|
|
@@ -4975,7 +4981,7 @@ static_library("browser") {
|
|
]
|
|
}
|
|
|
|
- if (use_ozone) {
|
|
+ if (use_ozone && !use_x11) {
|
|
sources += [
|
|
"fullscreen_ozone.cc",
|
|
"media/webrtc/window_icon_util_ozone.cc",
|