2014-09-04 19:53:40 +02:00
|
|
|
diff --git common.gypi common.gypi
|
2016-07-06 21:34:09 +02:00
|
|
|
index f5d107d..e38c4ee 100644
|
2014-09-04 19:53:40 +02:00
|
|
|
--- common.gypi
|
|
|
|
+++ common.gypi
|
2012-04-03 03:34:16 +02:00
|
|
|
@@ -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
|
2016-05-25 01:35:43 +02:00
|
|
|
@@ -90,7 +93,10 @@
|
2015-12-09 17:10:16 +01:00
|
|
|
# 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
|