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

Side by Side Diff: chrome/chrome.gyp

Issue 377613003: Cleanup: Remove references to reliability_tests in gyp files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | « build/common.gypi ('k') | 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 '<@(_outputs)'], 416 '<@(_outputs)'],
417 'message': 'Dumping breakpad symbols to <(_outputs)', 417 'message': 'Dumping breakpad symbols to <(_outputs)',
418 'process_outputs_as_sources': 1, 418 'process_outputs_as_sources': 1,
419 }, 419 },
420 ], 420 ],
421 'dependencies': [ 421 'dependencies': [
422 'chrome', 422 'chrome',
423 '../breakpad/breakpad.gyp:dump_syms', 423 '../breakpad/breakpad.gyp:dump_syms',
424 ], 424 ],
425 }], 425 }],
426 ['linux_strip_reliability_tests==1', {
427 'actions': [
428 {
429 'action_name': 'strip_reliability_tests',
430 'outputs': [
431 '<(PRODUCT_DIR)/strip_reliability_tests.stamp',
432 ],
433 'action': ['strip',
434 '-g',
435 '<@(_inputs)'],
436 'message': 'Stripping reliability tests',
437 },
438 ],
439 }],
440 ], 426 ],
441 }, 427 },
442 ], 428 ],
443 }], # OS=="linux" 429 }], # OS=="linux"
444 ['OS=="win"', 430 ['OS=="win"',
445 { 'targets': [ 431 { 'targets': [
446 { 432 {
447 # For historical reasons, chrome/chrome.sln has been the entry point 433 # For historical reasons, chrome/chrome.sln has been the entry point
448 # for new Chrome developers. To assist development, include several 434 # for new Chrome developers. To assist development, include several
449 # core unittests that are otherwise only accessible side-by-side with 435 # core unittests that are otherwise only accessible side-by-side with
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
774 'sources': [ 760 'sources': [
775 'service/cloud_print/print_system_dummy.cc', 761 'service/cloud_print/print_system_dummy.cc',
776 ], 762 ],
777 }], 763 }],
778 ], 764 ],
779 }, 765 },
780 ], 766 ],
781 }], 767 }],
782 ], # 'conditions' 768 ], # 'conditions'
783 } 769 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698