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 ], | |
359 'conditions': [ | |
360 ['disable_nacl==0 and OS!="win"', { | |
361 'dependencies': [ | |
362 '../native_client_sdk/src/build_tools/nacl_ppapi_sdk.gyp:*', | |
363 ], | |
364 }], | |
365 ['disable_nacl==0 and OS=="win"', { | |
366 'dependencies': [ | |
367 '../native_client_sdk/src/build_tools/nacl_ppapi_sdk.gyp:*', | |
368 '../chrome/chrome.gyp:chrome_nacl_win64', | |
369 ], | |
370 }], | |
371 ], | |
372 }, # target_name: chromium_builder_nacl_sdk | |
373 ], # targets | 353 ], # targets |
374 }], | 354 }], |
375 ['OS=="mac"', { | 355 ['OS=="mac"', { |
376 'targets': [ | 356 'targets': [ |
377 { | 357 { |
378 # Target to build everything plus the dmg. We don't put the dmg | 358 # Target to build everything plus the dmg. We don't put the dmg |
379 # in the All target because developers really don't need it. | 359 # in the All target because developers really don't need it. |
380 'target_name': 'all_and_dmg', | 360 'target_name': 'all_and_dmg', |
381 'type': 'none', | 361 'type': 'none', |
382 'dependencies': [ | 362 'dependencies': [ |
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 '../chrome/chrome.gyp:browser_tests_run', | 727 '../chrome/chrome.gyp:browser_tests_run', |
748 '../chrome/chrome.gyp:sync_integration_tests_run', | 728 '../chrome/chrome.gyp:sync_integration_tests_run', |
749 '../chrome/chrome.gyp:unit_tests_run', | 729 '../chrome/chrome.gyp:unit_tests_run', |
750 '../net/net.gyp:net_unittests_run', | 730 '../net/net.gyp:net_unittests_run', |
751 ], | 731 ], |
752 }, # target_name: chromium_swarm_tests | 732 }, # target_name: chromium_swarm_tests |
753 ], | 733 ], |
754 }], | 734 }], |
755 ], # conditions | 735 ], # conditions |
756 } | 736 } |
OLD | NEW |