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

Side by Side Diff: base/base.gyp

Issue 10139020: Change --variable argument, must now be spaced, -V foo bar, instead of -V foo=bar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | 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 { 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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 'base_unittests.isolate', 478 'base_unittests.isolate',
479 '<@(isolate_dependency_tracked)', 479 '<@(isolate_dependency_tracked)',
480 ], 480 ],
481 'outputs': [ 481 'outputs': [
482 '<(PRODUCT_DIR)/base_unittests.results', 482 '<(PRODUCT_DIR)/base_unittests.results',
483 ], 483 ],
484 'action': [ 484 'action': [
485 'python', 485 'python',
486 '../tools/isolate/isolate.py', 486 '../tools/isolate/isolate.py',
487 '--mode', '<(tests_run)', 487 '--mode', '<(tests_run)',
488 '--variable', 'PRODUCT_DIR=<(PRODUCT_DIR)', 488 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
489 '--variable', 'OS=<(OS)', 489 '--variable', 'OS', '<(OS)',
490 '--result', '<@(_outputs)', 490 '--result', '<@(_outputs)',
491 'base_unittests.isolate', 491 'base_unittests.isolate',
492 ], 492 ],
493 }, 493 },
494 ], 494 ],
495 }, 495 },
496 { 496 {
497 'target_name': 'test_support_perf', 497 'target_name': 'test_support_perf',
498 'type': 'static_library', 498 'type': 'static_library',
499 'dependencies': [ 499 'dependencies': [
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 '--ant-args', 676 '--ant-args',
677 '-DPRODUCT_DIR=<(PRODUCT_DIR)', 677 '-DPRODUCT_DIR=<(PRODUCT_DIR)',
678 '--ant-compile' 678 '--ant-compile'
679 ], 679 ],
680 }, 680 },
681 ] 681 ]
682 }], 682 }],
683 }], 683 }],
684 ], 684 ],
685 } 685 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698