mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-04-07 23:51:10 +02:00
- Remove |accept_lang| parameter from CefJSDialogHandler::OnJSDialog and CefFormatUrlForSecurityDisplay (see https://crbug.com/336973#c36). - Remove remaining NPAPI-related code including functions from cef_web_plugin.h (see https://crbug.com/493212#c55). - Mac: 10.7+ deployment target is now required for client applications. - Mac: Remove CefBrowserHost::SetWindowVisibility (issue #1375). No replacement is required for windowed rendering. Use WasHidden for off-screen rendering. - Windows: Visual Studio 2015 Update 2 is now required when building CEF/Chromium.
27 lines
1.2 KiB
Diff
27 lines
1.2 KiB
Diff
diff --git common.gypi common.gypi
|
|
index 1aad5054..5bccbed 100644
|
|
--- common.gypi
|
|
+++ common.gypi
|
|
@@ -9,6 +9,9 @@
|
|
# Variables expected to be overriden on the GYP command line (-D) or by
|
|
# ~/.gyp/include.gypi.
|
|
'variables': {
|
|
+ # Directory for CEF source files. This will be set by cef.gypi.
|
|
+ 'cef_directory%' : '',
|
|
+
|
|
# Putting a variables dict inside another variables dict looks kind of
|
|
# weird. This is done so that 'host_arch', 'chromeos', etc are defined as
|
|
# variables within the outer variables dict here. This is necessary
|
|
@@ -96,7 +99,10 @@
|
|
# depending on the packages installed on the local machine. Set this
|
|
# to 0 to build against locally installed headers and libraries (e.g.
|
|
# if packaging for a linux distro)
|
|
- 'use_sysroot%': 1,
|
|
+ # Disable use of the sysroot image for CEF because it does not include
|
|
+ # the GTK dependency required by cefclient. It would be nice to enable
|
|
+ # this functionality in the future. See http://crbug.com/504446.
|
|
+ 'use_sysroot%': 0,
|
|
|
|
# Override buildtype to select the desired build flavor.
|
|
# Dev - everyday build for development/testing
|