mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-12 09:37:37 +01:00
24c2f2fa38
- CefURLRequest::Create is no longer supported in the renderer process (see https://crbug.com/891872). Use CefFrame::CreateURLRequest instead. - Mac platform definitions have been changed from `MACOSX` to `MAC` (see https://crbug.com/1105907) and related CMake macro names have been updated. The old `OS_MACOSX` define is still set in code and CMake for backwards compatibility. - Linux ARM build is currently broken (see https://crbug.com/1123214).
32 lines
967 B
Diff
32 lines
967 B
Diff
diff --git chrome/renderer/BUILD.gn chrome/renderer/BUILD.gn
|
|
index cbf9a60c385e..06146091eb43 100644
|
|
--- chrome/renderer/BUILD.gn
|
|
+++ chrome/renderer/BUILD.gn
|
|
@@ -4,6 +4,7 @@
|
|
|
|
import("//build/config/buildflags_paint_preview.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")
|
|
@@ -134,6 +135,7 @@ static_library("renderer") {
|
|
public_deps = [ "//components/contextual_search:buildflags" ]
|
|
|
|
deps = [
|
|
+ "//cef/libcef/features",
|
|
"//chrome:resources",
|
|
"//chrome:strings",
|
|
"//chrome/common",
|
|
@@ -199,6 +201,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/loader",
|