2009-10-02 19:59:38 +02:00
|
|
|
# Copyright (c) 2009 The Chromium Embedded Framework Authors. All rights
|
|
|
|
# reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
# can be found in the LICENSE file.
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2009-10-02 19:59:38 +02:00
|
|
|
{
|
|
|
|
'variables': {
|
2010-10-09 18:37:43 +02:00
|
|
|
'conditions': [
|
2011-09-23 02:16:03 +02:00
|
|
|
# Directory for CEF source files.
|
2010-10-09 18:37:43 +02:00
|
|
|
[ 'OS=="win"', {
|
|
|
|
'cef_directory' : '<!(echo %CEF_DIRECTORY%)',
|
2011-10-12 21:09:15 +02:00
|
|
|
# Keep the build output in the CEF directory.
|
|
|
|
'build_dir_prefix': '..\\<!(echo %CEF_DIRECTORY%)\\',
|
2010-10-09 18:37:43 +02:00
|
|
|
}, { # OS!="win"
|
|
|
|
'cef_directory' : '<!(echo $CEF_DIRECTORY)',
|
|
|
|
}],
|
2011-09-23 02:16:03 +02:00
|
|
|
[ 'OS=="mac"', {
|
|
|
|
# Don't use the chrome style plugin with CEF.
|
|
|
|
'clang_use_chrome_plugins': 0,
|
|
|
|
}],
|
2010-10-09 18:37:43 +02:00
|
|
|
]
|
2010-10-03 23:04:50 +02:00
|
|
|
},
|
|
|
|
}
|