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 3161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3172 ], | 3172 ], |
3173 'link_settings': { | 3173 'link_settings': { |
3174 'libraries': [ | 3174 'libraries': [ |
3175 '$(SDKROOT)/usr/lib/libpython2.5.dylib', | 3175 '$(SDKROOT)/usr/lib/libpython2.5.dylib', |
3176 ], | 3176 ], |
3177 } | 3177 } |
3178 }], | 3178 }], |
3179 ['OS=="win"', { | 3179 ['OS=="win"', { |
3180 'include_dirs': [ | 3180 'include_dirs': [ |
3181 '..', | 3181 '..', |
3182 '../third_party/python_24/include', | 3182 '../third_party/python_26/include', |
3183 ], | 3183 ], |
3184 'link_settings': { | 3184 'link_settings': { |
3185 'libraries': [ | 3185 'libraries': [ |
3186 '../third_party/python_24/libs/python24.lib', | 3186 '../third_party/python_26/libs/python26.lib', |
3187 ], | 3187 ], |
3188 } | 3188 } |
3189 }], | 3189 }], |
3190 ], | 3190 ], |
3191 'actions': [ | 3191 'actions': [ |
3192 { | 3192 { |
3193 'action_name': 'pyautolib_swig', | 3193 'action_name': 'pyautolib_swig', |
3194 'inputs': [ | 3194 'inputs': [ |
3195 'test/pyautolib/argc_argv.i', | 3195 'test/pyautolib/argc_argv.i', |
3196 'test/pyautolib/pyautolib.i', | 3196 'test/pyautolib/pyautolib.i', |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3394 ] | 3394 ] |
3395 }], # 'coverage!=0' | 3395 }], # 'coverage!=0' |
3396 ], # 'conditions' | 3396 ], # 'conditions' |
3397 } | 3397 } |
3398 | 3398 |
3399 # Local Variables: | 3399 # Local Variables: |
3400 # tab-width:2 | 3400 # tab-width:2 |
3401 # indent-tabs-mode:nil | 3401 # indent-tabs-mode:nil |
3402 # End: | 3402 # End: |
3403 # vim: set expandtab tabstop=2 shiftwidth=2: | 3403 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |