Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(529)

Side by Side Diff: build/all.gyp

Issue 11316139: Beginnings of moving more stuff from build_sdk.py to GYP. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/nacl_ppapi_sdk.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
353 ], # targets 373 ], # targets
354 }], 374 }],
355 ['OS=="mac"', { 375 ['OS=="mac"', {
356 'targets': [ 376 'targets': [
357 { 377 {
358 # Target to build everything plus the dmg. We don't put the dmg 378 # 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. 379 # in the All target because developers really don't need it.
360 'target_name': 'all_and_dmg', 380 'target_name': 'all_and_dmg',
361 'type': 'none', 381 'type': 'none',
362 'dependencies': [ 382 'dependencies': [
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 '../chrome/chrome.gyp:browser_tests_run', 747 '../chrome/chrome.gyp:browser_tests_run',
728 '../chrome/chrome.gyp:sync_integration_tests_run', 748 '../chrome/chrome.gyp:sync_integration_tests_run',
729 '../chrome/chrome.gyp:unit_tests_run', 749 '../chrome/chrome.gyp:unit_tests_run',
730 '../net/net.gyp:net_unittests_run', 750 '../net/net.gyp:net_unittests_run',
731 ], 751 ],
732 }, # target_name: chromium_swarm_tests 752 }, # target_name: chromium_swarm_tests
733 ], 753 ],
734 }], 754 }],
735 ], # conditions 755 ], # conditions
736 } 756 }
OLDNEW
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/nacl_ppapi_sdk.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698