| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 ['OS=="win"', { | 279 ['OS=="win"', { |
| 280 'include_dirs': [ | 280 'include_dirs': [ |
| 281 '<(DEPTH)/third_party/wtl/include', | 281 '<(DEPTH)/third_party/wtl/include', |
| 282 ], | 282 ], |
| 283 }], | 283 }], |
| 284 ['OS=="win" and use_aura==1', { | 284 ['OS=="win" and use_aura==1', { |
| 285 'sources/': [ | 285 'sources/': [ |
| 286 ['exclude', 'test/base/ui_test_utils_win.cc'], | 286 ['exclude', 'test/base/ui_test_utils_win.cc'], |
| 287 ], | 287 ], |
| 288 }], | 288 }], |
| 289 ['use_webkit_compositor==0', { | |
| 290 'dependencies': [ | |
| 291 '../ui/gfx/compositor/compositor.gyp:test_compositor', | |
| 292 ], | |
| 293 }], | |
| 294 ], | 289 ], |
| 295 }, | 290 }, |
| 296 { | 291 { |
| 297 'target_name': 'test_support_ui', | 292 'target_name': 'test_support_ui', |
| 298 'type': 'static_library', | 293 'type': 'static_library', |
| 299 'dependencies': [ | 294 'dependencies': [ |
| 300 'chrome_resources.gyp:chrome_resources', | 295 'chrome_resources.gyp:chrome_resources', |
| 301 'chrome_resources.gyp:chrome_strings', | 296 'chrome_resources.gyp:chrome_strings', |
| 302 'chrome_resources.gyp:theme_resources', | 297 'chrome_resources.gyp:theme_resources', |
| 303 'test_support_common', | 298 'test_support_common', |
| (...skipping 4327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4631 # Use outputs of this action as inputs for the main target build. | 4626 # Use outputs of this action as inputs for the main target build. |
| 4632 # Seems as a misnomer but makes this happy on Linux (scons). | 4627 # Seems as a misnomer but makes this happy on Linux (scons). |
| 4633 'process_outputs_as_sources': 1, | 4628 'process_outputs_as_sources': 1, |
| 4634 }, | 4629 }, |
| 4635 ], # 'actions' | 4630 ], # 'actions' |
| 4636 }, | 4631 }, |
| 4637 ] | 4632 ] |
| 4638 }], # 'coverage!=0' | 4633 }], # 'coverage!=0' |
| 4639 ], # 'conditions' | 4634 ], # 'conditions' |
| 4640 } | 4635 } |
| OLD | NEW |