mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-13 10:06:28 +01:00
74db00fc89
- Linux ARM builds require use_vaapi=false (see https://crbug.com/1185348) - Windows official builds require use_thin_lto=false (see https://crbug.com/1177001)
41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
diff --git chrome/browser/BUILD.gn chrome/browser/BUILD.gn
|
|
index 72d91d05c23a..bfa8860bcd89 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")
|
|
@@ -1964,6 +1965,7 @@ static_library("browser") {
|
|
"//build:chromeos_buildflags",
|
|
"//build/config/compiler:compiler_buildflags",
|
|
"//cc",
|
|
+ "//cef/libcef/features",
|
|
"//chrome:extra_resources",
|
|
"//chrome:resources",
|
|
"//chrome:strings",
|
|
@@ -2504,6 +2506,10 @@ static_library("browser") {
|
|
]
|
|
}
|
|
|
|
+ if (enable_cef) {
|
|
+ configs += [ "//cef/libcef/features:config" ]
|
|
+ }
|
|
+
|
|
if (is_android) {
|
|
sources += [
|
|
"after_startup_task_utils_android.cc",
|
|
@@ -5166,7 +5172,7 @@ static_library("browser") {
|
|
]
|
|
}
|
|
|
|
- if (use_ozone) {
|
|
+ if (use_ozone && !use_x11) {
|
|
sources += [
|
|
"fullscreen_ozone.cc",
|
|
"media/webrtc/window_icon_util_ozone.cc",
|