| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 '../content/content.gyp:test_support_content', | 58 '../content/content.gyp:test_support_content', |
| 59 '../ipc/ipc.gyp:test_support_ipc', | 59 '../ipc/ipc.gyp:test_support_ipc', |
| 60 '../media/media.gyp:media_test_support', | 60 '../media/media.gyp:media_test_support', |
| 61 '../net/net.gyp:net', | 61 '../net/net.gyp:net', |
| 62 # 'test/base/test_url_request_context_getter.h' brings in this requireme
nt. | 62 # 'test/base/test_url_request_context_getter.h' brings in this requireme
nt. |
| 63 '../net/net.gyp:net_test_support', | 63 '../net/net.gyp:net_test_support', |
| 64 '../skia/skia.gyp:skia', | 64 '../skia/skia.gyp:skia', |
| 65 '../testing/gmock.gyp:gmock', | 65 '../testing/gmock.gyp:gmock', |
| 66 '../testing/gtest.gyp:gtest', | 66 '../testing/gtest.gyp:gtest', |
| 67 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 67 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 68 '../ui/gfx/compositor/compositor.gyp:test_compositor', | |
| 69 ], | 68 ], |
| 70 'export_dependent_settings': [ | 69 'export_dependent_settings': [ |
| 71 'renderer', | 70 'renderer', |
| 72 'app/policy/cloud_policy_codegen.gyp:policy', | 71 'app/policy/cloud_policy_codegen.gyp:policy', |
| 73 '../base/base.gyp:test_support_base', | 72 '../base/base.gyp:test_support_base', |
| 74 ], | 73 ], |
| 75 'include_dirs': [ | 74 'include_dirs': [ |
| 76 '..', | 75 '..', |
| 77 ], | 76 ], |
| 78 'sources': [ | 77 'sources': [ |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 ['OS=="win"', { | 270 ['OS=="win"', { |
| 272 'include_dirs': [ | 271 'include_dirs': [ |
| 273 '<(DEPTH)/third_party/wtl/include', | 272 '<(DEPTH)/third_party/wtl/include', |
| 274 ], | 273 ], |
| 275 }], | 274 }], |
| 276 ['OS=="win" and use_aura==1', { | 275 ['OS=="win" and use_aura==1', { |
| 277 'sources/': [ | 276 'sources/': [ |
| 278 ['exclude', 'test/base/ui_test_utils_win.cc'], | 277 ['exclude', 'test/base/ui_test_utils_win.cc'], |
| 279 ], | 278 ], |
| 280 }], | 279 }], |
| 280 ['use_webkit_compositor==0', { |
| 281 'dependencies': [ |
| 282 '../ui/gfx/compositor/compositor.gyp:test_compositor', |
| 283 ], |
| 284 }], |
| 281 ], | 285 ], |
| 282 }, | 286 }, |
| 283 { | 287 { |
| 284 'target_name': 'test_support_ui', | 288 'target_name': 'test_support_ui', |
| 285 'type': 'static_library', | 289 'type': 'static_library', |
| 286 'dependencies': [ | 290 'dependencies': [ |
| 287 'chrome_resources.gyp:chrome_resources', | 291 'chrome_resources.gyp:chrome_resources', |
| 288 'chrome_resources.gyp:chrome_strings', | 292 'chrome_resources.gyp:chrome_strings', |
| 289 'chrome_resources.gyp:theme_resources', | 293 'chrome_resources.gyp:theme_resources', |
| 290 'test_support_common', | 294 'test_support_common', |
| (...skipping 4023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4314 # Use outputs of this action as inputs for the main target build. | 4318 # Use outputs of this action as inputs for the main target build. |
| 4315 # Seems as a misnomer but makes this happy on Linux (scons). | 4319 # Seems as a misnomer but makes this happy on Linux (scons). |
| 4316 'process_outputs_as_sources': 1, | 4320 'process_outputs_as_sources': 1, |
| 4317 }, | 4321 }, |
| 4318 ], # 'actions' | 4322 ], # 'actions' |
| 4319 }, | 4323 }, |
| 4320 ] | 4324 ] |
| 4321 }], # 'coverage!=0' | 4325 }], # 'coverage!=0' |
| 4322 ], # 'conditions' | 4326 ], # 'conditions' |
| 4323 } | 4327 } |
| OLD | NEW |