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

Side by Side Diff: build/all.gyp

Issue 15521008: Add crash_handler to all.gyp for WebRTC build target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Wrapped into a OS=="win" condition Created 7 years, 7 months 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 | no next file » | 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 'type': 'none', 416 'type': 'none',
417 'dependencies': [ 417 'dependencies': [
418 'chromium_builder_qa', # needed for perf pyauto tests 418 'chromium_builder_qa', # needed for perf pyauto tests
419 '../chrome/chrome.gyp:browser_tests', 419 '../chrome/chrome.gyp:browser_tests',
420 '../content/content.gyp:content_browsertests', 420 '../content/content.gyp:content_browsertests',
421 '../content/content.gyp:content_unittests', 421 '../content/content.gyp:content_unittests',
422 '../third_party/libjingle/libjingle.gyp:peerconnection_server', 422 '../third_party/libjingle/libjingle.gyp:peerconnection_server',
423 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', 423 '../third_party/webrtc/tools/tools.gyp:frame_analyzer',
424 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', 424 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter',
425 ], 425 ],
426 'conditions': [
427 ['OS=="win"', {
428 'dependencies': [
429 '../chrome/chrome.gyp:crash_service',
430 ],
431 }],
432 ],
426 }, # target_name: chromium_builder_webrtc 433 }, # target_name: chromium_builder_webrtc
427 { 434 {
428 'target_name': 'chromium_builder_chromedriver', 435 'target_name': 'chromium_builder_chromedriver',
429 'type': 'none', 436 'type': 'none',
430 'dependencies': [ 437 'dependencies': [
431 '../chrome/chrome.gyp:chromedriver2', 438 '../chrome/chrome.gyp:chromedriver2',
432 '../chrome/chrome.gyp:chromedriver2_server', 439 '../chrome/chrome.gyp:chromedriver2_server',
433 '../chrome/chrome.gyp:chromedriver2_tests', 440 '../chrome/chrome.gyp:chromedriver2_tests',
434 '../chrome/chrome.gyp:chromedriver2_unittests', 441 '../chrome/chrome.gyp:chromedriver2_unittests',
435 ], 442 ],
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 '../chrome/chrome.gyp:interactive_ui_tests_run', 868 '../chrome/chrome.gyp:interactive_ui_tests_run',
862 '../chrome/chrome.gyp:sync_integration_tests_run', 869 '../chrome/chrome.gyp:sync_integration_tests_run',
863 '../chrome/chrome.gyp:unit_tests_run', 870 '../chrome/chrome.gyp:unit_tests_run',
864 '../net/net.gyp:net_unittests_run', 871 '../net/net.gyp:net_unittests_run',
865 ], 872 ],
866 }, # target_name: chromium_swarm_tests 873 }, # target_name: chromium_swarm_tests
867 ], 874 ],
868 }], 875 }],
869 ], # conditions 876 ], # conditions
870 } 877 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698