2013-12-05 20:09:17 +01:00
|
|
|
# Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
2012-04-03 03:34:16 +02:00
|
|
|
# reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
# can be found in the LICENSE file.
|
|
|
|
|
|
|
|
{
|
|
|
|
'variables': {
|
2013-10-24 23:40:32 +02:00
|
|
|
# Don't use the chrome style plugin with CEF.
|
|
|
|
'clang_use_chrome_plugins': 0,
|
2014-11-12 20:25:15 +01:00
|
|
|
# Set ENABLE_PRINTING=1 ENABLE_BASIC_PRINTING=1.
|
|
|
|
'enable_basic_printing': 1,
|
|
|
|
'enable_print_preview': 0,
|
2015-08-31 13:28:07 +02:00
|
|
|
# Enable support for Widevine CDM.
|
|
|
|
'enable_widevine': 1,
|
2015-09-09 16:05:39 +02:00
|
|
|
# Disable support for plugin installation.
|
|
|
|
'enable_plugin_installation': 0,
|
2012-04-03 03:34:16 +02:00
|
|
|
'conditions': [
|
|
|
|
# Directory for CEF source files.
|
|
|
|
[ 'OS=="win"', {
|
|
|
|
'cef_directory' : '<!(echo %CEF_DIRECTORY%)',
|
|
|
|
}, { # OS!="win"
|
|
|
|
'cef_directory' : '<!(echo $CEF_DIRECTORY)',
|
|
|
|
}],
|
2013-12-05 20:09:17 +01:00
|
|
|
[ 'OS=="mac"', {
|
|
|
|
# Strip symbols and create dSYM files for the Release target.
|
|
|
|
'mac_strip_release': 1,
|
|
|
|
}],
|
2012-04-03 03:34:16 +02:00
|
|
|
]
|
2016-02-08 19:47:18 +01:00
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|