OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 { | 5 { |
6 'variables' : { | 6 'variables' : { |
7 'pyautolib_sources': [ | 7 'pyautolib_sources': [ |
8 'app/chrome_command_ids.h', | 8 'app/chrome_command_ids.h', |
9 'app/chrome_dll_resource.h', | 9 'app/chrome_dll_resource.h', |
10 'common/automation_constants.h', | 10 'common/automation_constants.h', |
(...skipping 3150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3161 ], | 3161 ], |
3162 'link_settings': { | 3162 'link_settings': { |
3163 'libraries': [ | 3163 'libraries': [ |
3164 '$(SDKROOT)/usr/lib/libpython2.5.dylib', | 3164 '$(SDKROOT)/usr/lib/libpython2.5.dylib', |
3165 ], | 3165 ], |
3166 } | 3166 } |
3167 }], | 3167 }], |
3168 ['OS=="win"', { | 3168 ['OS=="win"', { |
3169 'include_dirs': [ | 3169 'include_dirs': [ |
3170 '..', | 3170 '..', |
3171 '../third_party/python_24/include', | 3171 '../third_party/python_26/include', |
3172 ], | 3172 ], |
3173 'link_settings': { | 3173 'link_settings': { |
3174 'libraries': [ | 3174 'libraries': [ |
3175 '../third_party/python_24/libs/python24.lib', | 3175 '../third_party/python_26/libs/python26.lib', |
3176 ], | 3176 ], |
3177 } | 3177 } |
3178 }], | 3178 }], |
3179 ], | 3179 ], |
3180 'actions': [ | 3180 'actions': [ |
3181 { | 3181 { |
3182 'action_name': 'pyautolib_swig', | 3182 'action_name': 'pyautolib_swig', |
3183 'inputs': [ | 3183 'inputs': [ |
3184 'test/pyautolib/argc_argv.i', | 3184 'test/pyautolib/argc_argv.i', |
3185 'test/pyautolib/pyautolib.i', | 3185 'test/pyautolib/pyautolib.i', |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3383 ] | 3383 ] |
3384 }], # 'coverage!=0' | 3384 }], # 'coverage!=0' |
3385 ], # 'conditions' | 3385 ], # 'conditions' |
3386 } | 3386 } |
3387 | 3387 |
3388 # Local Variables: | 3388 # Local Variables: |
3389 # tab-width:2 | 3389 # tab-width:2 |
3390 # indent-tabs-mode:nil | 3390 # indent-tabs-mode:nil |
3391 # End: | 3391 # End: |
3392 # vim: set expandtab tabstop=2 shiftwidth=2: | 3392 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |