OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'variables' : { | 5 'variables' : { |
6 'pyautolib_sources': [ | 6 'pyautolib_sources': [ |
7 'app/chrome_command_ids.h', | 7 'app/chrome_command_ids.h', |
8 'app/chrome_dll_resource.h', | 8 'app/chrome_dll_resource.h', |
9 'common/automation_constants.h', | 9 'common/automation_constants.h', |
10 'common/pref_names.cc', | 10 'common/pref_names.cc', |
(...skipping 4067 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4078 # may not compile cleanly at -Wall. | 4078 # may not compile cleanly at -Wall. |
4079 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', # -Wno-error | 4079 'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', # -Wno-error |
4080 | 4080 |
4081 # Link with python2.6. Using -L/usr/lib and -lpython2.6 does not | 4081 # Link with python2.6. Using -L/usr/lib and -lpython2.6 does not |
4082 # work with the -isysroot argument passed in. Even if it did, | 4082 # work with the -isysroot argument passed in. Even if it did, |
4083 # the linker shouldn't use any other lib not in the 10.5 sdk. | 4083 # the linker shouldn't use any other lib not in the 10.5 sdk. |
4084 'OTHER_LDFLAGS': [ | 4084 'OTHER_LDFLAGS': [ |
4085 '/usr/lib/libpython2.6.dylib' | 4085 '/usr/lib/libpython2.6.dylib' |
4086 ], | 4086 ], |
4087 }, | 4087 }, |
| 4088 'msvs_disabled_warnings': [4211], |
4088 'conditions': [ | 4089 'conditions': [ |
4089 ['os_posix == 1 and OS!="mac"', { | 4090 ['os_posix == 1 and OS!="mac"', { |
4090 'include_dirs': [ | 4091 'include_dirs': [ |
4091 '..', | 4092 '..', |
4092 '<(sysroot)/usr/include/python<(python_ver)', | 4093 '<(sysroot)/usr/include/python<(python_ver)', |
4093 ], | 4094 ], |
4094 'dependencies': [ | 4095 'dependencies': [ |
4095 '../build/linux/system.gyp:gtk', | 4096 '../build/linux/system.gyp:gtk', |
4096 ], | 4097 ], |
4097 'link_settings': { | 4098 'link_settings': { |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4326 # Use outputs of this action as inputs for the main target build. | 4327 # Use outputs of this action as inputs for the main target build. |
4327 # Seems as a misnomer but makes this happy on Linux (scons). | 4328 # Seems as a misnomer but makes this happy on Linux (scons). |
4328 'process_outputs_as_sources': 1, | 4329 'process_outputs_as_sources': 1, |
4329 }, | 4330 }, |
4330 ], # 'actions' | 4331 ], # 'actions' |
4331 }, | 4332 }, |
4332 ] | 4333 ] |
4333 }], # 'coverage!=0' | 4334 }], # 'coverage!=0' |
4334 ], # 'conditions' | 4335 ], # 'conditions' |
4335 } | 4336 } |
OLD | NEW |