| 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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 { | 343 { |
| 344 'target_name': 'chromium_builder_webrtc', | 344 'target_name': 'chromium_builder_webrtc', |
| 345 'type': 'none', | 345 'type': 'none', |
| 346 'dependencies': [ | 346 'dependencies': [ |
| 347 'chromium_builder_qa', # needed for perf pyauto tests | 347 'chromium_builder_qa', # needed for perf pyauto tests |
| 348 '../third_party/libjingle/libjingle.gyp:peerconnection_server', | 348 '../third_party/libjingle/libjingle.gyp:peerconnection_server', |
| 349 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', | 349 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', |
| 350 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', | 350 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', |
| 351 ], | 351 ], |
| 352 }, # target_name: chromium_builder_webrtc | 352 }, # target_name: chromium_builder_webrtc |
| 353 { |
| 354 'target_name': 'chromium_builder_nacl_sdk', |
| 355 'type': 'none', |
| 356 'dependencies': [ |
| 357 '../chrome/chrome.gyp:chrome', |
| 358 '../native_client_sdk/src/build_tools/nacl_ppapi_sdk.gyp:*', |
| 359 ], |
| 360 'conditions': [ |
| 361 ['OS=="win"', { |
| 362 'dependencies': [ |
| 363 '../chrome/chrome.gyp:chrome_nacl_win64', |
| 364 ], |
| 365 }], |
| 366 ], |
| 367 }, # target_name: chromium_builder_nacl_sdk |
| 353 ], # targets | 368 ], # targets |
| 354 }], | 369 }], |
| 355 ['OS=="mac"', { | 370 ['OS=="mac"', { |
| 356 'targets': [ | 371 'targets': [ |
| 357 { | 372 { |
| 358 # Target to build everything plus the dmg. We don't put the dmg | 373 # Target to build everything plus the dmg. We don't put the dmg |
| 359 # in the All target because developers really don't need it. | 374 # in the All target because developers really don't need it. |
| 360 'target_name': 'all_and_dmg', | 375 'target_name': 'all_and_dmg', |
| 361 'type': 'none', | 376 'type': 'none', |
| 362 'dependencies': [ | 377 'dependencies': [ |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 '../chrome/chrome.gyp:browser_tests_run', | 742 '../chrome/chrome.gyp:browser_tests_run', |
| 728 '../chrome/chrome.gyp:sync_integration_tests_run', | 743 '../chrome/chrome.gyp:sync_integration_tests_run', |
| 729 '../chrome/chrome.gyp:unit_tests_run', | 744 '../chrome/chrome.gyp:unit_tests_run', |
| 730 '../net/net.gyp:net_unittests_run', | 745 '../net/net.gyp:net_unittests_run', |
| 731 ], | 746 ], |
| 732 }, # target_name: chromium_swarm_tests | 747 }, # target_name: chromium_swarm_tests |
| 733 ], | 748 ], |
| 734 }], | 749 }], |
| 735 ], # conditions | 750 ], # conditions |
| 736 } | 751 } |
| OLD | NEW |