2013-12-05 19:09:17 +00:00
|
|
|
# Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
2012-04-03 01:34:16 +00: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 21:40:32 +00:00
|
|
|
# Don't use the chrome style plugin with CEF.
|
|
|
|
'clang_use_chrome_plugins': 0,
|
2014-11-12 19:25:15 +00:00
|
|
|
# Set ENABLE_PRINTING=1 ENABLE_BASIC_PRINTING=1.
|
|
|
|
'enable_basic_printing': 1,
|
|
|
|
'enable_print_preview': 0,
|
2012-04-03 01:34:16 +00:00
|
|
|
'conditions': [
|
|
|
|
# Directory for CEF source files.
|
|
|
|
[ 'OS=="win"', {
|
|
|
|
'cef_directory' : '<!(echo %CEF_DIRECTORY%)',
|
|
|
|
}, { # OS!="win"
|
|
|
|
'cef_directory' : '<!(echo $CEF_DIRECTORY)',
|
|
|
|
}],
|
2013-12-05 19:09:17 +00:00
|
|
|
[ 'OS=="mac"', {
|
|
|
|
# Strip symbols and create dSYM files for the Release target.
|
|
|
|
'mac_strip_release': 1,
|
|
|
|
}],
|
2012-04-03 01:34:16 +00:00
|
|
|
]
|
2012-11-05 20:18:20 +00:00
|
|
|
}, 'conditions': [
|
2012-12-06 20:50:39 +00:00
|
|
|
['os_posix==1 and OS!="mac" and OS!="android"', {
|
|
|
|
'target_defaults': {
|
|
|
|
'cflags_cc': ['-Wno-deprecated-declarations'],
|
|
|
|
},
|
2012-11-05 20:18:20 +00:00
|
|
|
}]
|
2013-06-22 02:06:32 +00:00
|
|
|
],
|
2012-04-03 01:34:16 +00:00
|
|
|
}
|