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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 10392073: Add a new gyp define to be used by the swarm master. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add slash, otherwise gyp does silly things Created 8 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 | « build/common.gypi ('k') | net/net.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 'variables' : { 5 'variables' : {
6 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 2534 matching lines...) Expand 10 before | Expand all | Expand 10 after
2545 'action_name': 'isolate', 2545 'action_name': 'isolate',
2546 'inputs': [ 2546 'inputs': [
2547 '<@(isolate_dependency_tracked)', 2547 '<@(isolate_dependency_tracked)',
2548 ], 2548 ],
2549 'outputs': [ 2549 'outputs': [
2550 '<(PRODUCT_DIR)/unit_tests.results', 2550 '<(PRODUCT_DIR)/unit_tests.results',
2551 ], 2551 ],
2552 'action': [ 2552 'action': [
2553 'python', 2553 'python',
2554 '../tools/isolate/isolate.py', 2554 '../tools/isolate/isolate.py',
2555 '--mode', '<(tests_run)', 2555 '--mode', '<(test_isolation_mode)',
2556 '--outdir', '<(test_isolation_outdir)',
2556 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)', 2557 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
2557 '--variable', 'OS', '<(OS)', 2558 '--variable', 'OS', '<(OS)',
2558 '--result', '<@(_outputs)', 2559 '--result', '<@(_outputs)',
2559 'unit_tests.isolate', 2560 'unit_tests.isolate',
2560 ], 2561 ],
2561 }, 2562 },
2562 ], 2563 ],
2563 }, 2564 },
2564 { 2565 {
2565 # Executable that runs each browser test in a new process. 2566 # Executable that runs each browser test in a new process.
(...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after
3364 'action_name': 'isolate', 3365 'action_name': 'isolate',
3365 'inputs': [ 3366 'inputs': [
3366 '<@(isolate_dependency_tracked)', 3367 '<@(isolate_dependency_tracked)',
3367 ], 3368 ],
3368 'outputs': [ 3369 'outputs': [
3369 '<(PRODUCT_DIR)/browser_tests.results', 3370 '<(PRODUCT_DIR)/browser_tests.results',
3370 ], 3371 ],
3371 'action': [ 3372 'action': [
3372 'python', 3373 'python',
3373 '../tools/isolate/isolate.py', 3374 '../tools/isolate/isolate.py',
3374 '--mode', '<(tests_run)', 3375 '--mode', '<(test_isolation_mode)',
3376 '--outdir', '<(test_isolation_outdir)',
3375 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)', 3377 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
3376 '--variable', 'OS', '<(OS)', 3378 '--variable', 'OS', '<(OS)',
3377 '--result', '<@(_outputs)', 3379 '--result', '<@(_outputs)',
3378 'browser_tests.isolate', 3380 'browser_tests.isolate',
3379 ], 3381 ],
3380 }, 3382 },
3381 ], 3383 ],
3382 }, 3384 },
3383 { 3385 {
3384 # Executable that runs each perf browser test in a new process. 3386 # Executable that runs each perf browser test in a new process.
(...skipping 1322 matching lines...) Expand 10 before | Expand all | Expand 10 after
4707 # Use outputs of this action as inputs for the main target build. 4709 # Use outputs of this action as inputs for the main target build.
4708 # Seems as a misnomer but makes this happy on Linux (scons). 4710 # Seems as a misnomer but makes this happy on Linux (scons).
4709 'process_outputs_as_sources': 1, 4711 'process_outputs_as_sources': 1,
4710 }, 4712 },
4711 ], # 'actions' 4713 ], # 'actions'
4712 }, 4714 },
4713 ] 4715 ]
4714 }], # 'coverage!=0' 4716 }], # 'coverage!=0'
4715 ], # 'conditions' 4717 ], # 'conditions'
4716 } 4718 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698