mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-04-05 22:51:09 +02:00
Frame identifiers have changed from int64_t to string type. This is due to https://crbug.com/1502660 which removes access to frame routing IDs in the renderer process. New cross-process frame identifiers are 160-bit values (32-bit child process ID + 128-bit local frame token) and most easily represented as strings. All other frame-related expectations and behaviors remain the same.
32 lines
1017 B
Diff
32 lines
1017 B
Diff
diff --git chrome/renderer/BUILD.gn chrome/renderer/BUILD.gn
|
|
index da32ae82101ed..87342245c746f 100644
|
|
--- chrome/renderer/BUILD.gn
|
|
+++ chrome/renderer/BUILD.gn
|
|
@@ -5,6 +5,7 @@
|
|
import("//build/config/buildflags_paint_preview.gni")
|
|
import("//build/config/chromeos/ui_mode.gni")
|
|
import("//build/config/features.gni")
|
|
+import("//cef/libcef/features/features.gni")
|
|
import("//chrome/common/features.gni")
|
|
import("//components/nacl/features.gni")
|
|
import("//components/offline_pages/buildflags/features.gni")
|
|
@@ -136,6 +137,7 @@ static_library("renderer") {
|
|
deps = [
|
|
"//base/allocator:buildflags",
|
|
"//build:chromeos_buildflags",
|
|
+ "//cef/libcef/features",
|
|
"//chrome:resources",
|
|
"//chrome:strings",
|
|
"//chrome/common",
|
|
@@ -242,6 +244,10 @@ static_library("renderer") {
|
|
|
|
configs += [ "//build/config/compiler:wexit_time_destructors" ]
|
|
|
|
+ if (enable_cef) {
|
|
+ configs += [ "//cef/libcef/features:config" ]
|
|
+ }
|
|
+
|
|
if (enable_nacl) {
|
|
deps += [ "//components/nacl/renderer" ]
|
|
|