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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'All', | 8 'target_name': 'All', |
9 'type': 'none', | 9 'type': 'none', |
10 'xcode_create_dependents_test_runner': 1, | 10 'xcode_create_dependents_test_runner': 1, |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 '../remoting/remoting.gyp:remoting_webapp', | 308 '../remoting/remoting.gyp:remoting_webapp', |
309 ], | 309 ], |
310 'conditions': [ | 310 'conditions': [ |
311 # If you change this condition, make sure you also change it | 311 # If you change this condition, make sure you also change it |
312 # in chrome_tests.gypi | 312 # in chrome_tests.gypi |
313 ['enable_automation==1 and (OS=="mac" or OS=="win" or (os_posix==1 a
nd target_arch==python_arch))', { | 313 ['enable_automation==1 and (OS=="mac" or OS=="win" or (os_posix==1 a
nd target_arch==python_arch))', { |
314 'dependencies': [ | 314 'dependencies': [ |
315 '../chrome/chrome.gyp:pyautolib', | 315 '../chrome/chrome.gyp:pyautolib', |
316 ], | 316 ], |
317 }], | 317 }], |
| 318 ['OS=="mac"', { |
| 319 'dependencies': [ |
| 320 '../remoting/remoting.gyp:remoting_me2me_host_archive', |
| 321 ], |
| 322 }], |
| 323 ['OS=="win" and component != "shared_library" and wix_exists == "Tru
e" and sas_dll_exists == "True"', { |
| 324 'dependencies': [ |
| 325 '../remoting/remoting.gyp:remoting_host_installation', |
| 326 ], |
| 327 }], |
318 ], | 328 ], |
319 }, # target_name: chromium_builder_qa | 329 }, # target_name: chromium_builder_qa |
320 { | 330 { |
321 'target_name': 'chromium_builder_perf_av', | 331 'target_name': 'chromium_builder_perf_av', |
322 'type': 'none', | 332 'type': 'none', |
323 'dependencies': [ | 333 'dependencies': [ |
324 'chromium_builder_qa', # needed for perf pyauto tests | 334 'chromium_builder_qa', # needed for perf pyauto tests |
325 '../webkit/webkit.gyp:pull_in_DumpRenderTree', # to run layout test
s | 335 '../webkit/webkit.gyp:pull_in_DumpRenderTree', # to run layout test
s |
326 ], | 336 ], |
327 }, # target_name: chromium_builder_perf_av | 337 }, # target_name: chromium_builder_perf_av |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
683 '../base/base.gyp:base_unittests_run', | 693 '../base/base.gyp:base_unittests_run', |
684 '../chrome/chrome.gyp:browser_tests_run', | 694 '../chrome/chrome.gyp:browser_tests_run', |
685 '../chrome/chrome.gyp:unit_tests_run', | 695 '../chrome/chrome.gyp:unit_tests_run', |
686 '../net/net.gyp:net_unittests_run', | 696 '../net/net.gyp:net_unittests_run', |
687 ], | 697 ], |
688 }, # target_name: chromium_swarm_tests | 698 }, # target_name: chromium_swarm_tests |
689 ], | 699 ], |
690 }], | 700 }], |
691 ], # conditions | 701 ], # conditions |
692 } | 702 } |
OLD | NEW |