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

Side by Side Diff: base/base.gyp

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 | « no previous file | build/common.gypi » ('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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 'inputs': [ 484 'inputs': [
485 'base_unittests.isolate', 485 'base_unittests.isolate',
486 '<@(isolate_dependency_tracked)', 486 '<@(isolate_dependency_tracked)',
487 ], 487 ],
488 'outputs': [ 488 'outputs': [
489 '<(PRODUCT_DIR)/base_unittests.results', 489 '<(PRODUCT_DIR)/base_unittests.results',
490 ], 490 ],
491 'action': [ 491 'action': [
492 'python', 492 'python',
493 '../tools/isolate/isolate.py', 493 '../tools/isolate/isolate.py',
494 '--mode', '<(tests_run)', 494 '--mode', '<(test_isolation_mode)',
495 '--outdir', '<(test_isolation_outdir)',
495 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)', 496 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
496 '--variable', 'OS', '<(OS)', 497 '--variable', 'OS', '<(OS)',
497 '--result', '<@(_outputs)', 498 '--result', '<@(_outputs)',
498 'base_unittests.isolate', 499 'base_unittests.isolate',
499 ], 500 ],
500 }, 501 },
501 ], 502 ],
502 }, 503 },
503 { 504 {
504 'target_name': 'test_support_perf', 505 'target_name': 'test_support_perf',
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 '--ant-args', 686 '--ant-args',
686 '-DPRODUCT_DIR=<(PRODUCT_DIR)', 687 '-DPRODUCT_DIR=<(PRODUCT_DIR)',
687 '--ant-compile' 688 '--ant-compile'
688 ], 689 ],
689 }, 690 },
690 ] 691 ]
691 }], 692 }],
692 }], 693 }],
693 ], 694 ],
694 } 695 }
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698