OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 4296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4307 '..', | 4307 '..', |
4308 '/usr/include/python2.6', | 4308 '/usr/include/python2.6', |
4309 ], | 4309 ], |
4310 }], | 4310 }], |
4311 ['OS=="win"', { | 4311 ['OS=="win"', { |
4312 'product_extension': 'pyd', | 4312 'product_extension': 'pyd', |
4313 'include_dirs': [ | 4313 'include_dirs': [ |
4314 '..', | 4314 '..', |
4315 '../third_party/python_26/include', | 4315 '../third_party/python_26/include', |
4316 ], | 4316 ], |
4317 'link_settings': { | 4317 'msvs_settings': { |
4318 'libraries': [ | 4318 'VCLinkerTool': { |
4319 '../third_party/python_26/libs/python26.lib', | 4319 'AdditionalLibraryDirectories': [ |
4320 ], | 4320 '<(DEPTH)/third_party/python_26/libs', |
| 4321 ], |
| 4322 'AdditionalDependencies': [ |
| 4323 'python26.lib', |
| 4324 ], |
| 4325 }, |
4321 } | 4326 } |
4322 }], | 4327 }], |
4323 ['clang == 1', { | 4328 ['clang == 1', { |
4324 'xcode_settings': { | 4329 'xcode_settings': { |
4325 'WARNING_CFLAGS': [ | 4330 'WARNING_CFLAGS': [ |
4326 # swig creates code with self assignments. | 4331 # swig creates code with self assignments. |
4327 '-Wno-self-assign', | 4332 '-Wno-self-assign', |
4328 ], | 4333 ], |
4329 }, | 4334 }, |
4330 'cflags': [ | 4335 'cflags': [ |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4638 '--result', '<@(_outputs)', | 4643 '--result', '<@(_outputs)', |
4639 '--isolate', 'browser_tests.isolate', | 4644 '--isolate', 'browser_tests.isolate', |
4640 ], | 4645 ], |
4641 }, | 4646 }, |
4642 ], | 4647 ], |
4643 }, | 4648 }, |
4644 ], | 4649 ], |
4645 }], | 4650 }], |
4646 ], # 'conditions' | 4651 ], # 'conditions' |
4647 } | 4652 } |
OLD | NEW |