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

Side by Side Diff: base/base.gyp

Issue 11236005: Convert all the foo_test_run from using actions to use rules. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed pseudo italic Created 8 years, 2 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/isolate.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 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after
1049 }], 1049 }],
1050 ['test_isolation_mode != "noop"', { 1050 ['test_isolation_mode != "noop"', {
1051 'targets': [ 1051 'targets': [
1052 { 1052 {
1053 'target_name': 'base_unittests_run', 1053 'target_name': 'base_unittests_run',
1054 'type': 'none', 1054 'type': 'none',
1055 'dependencies': [ 1055 'dependencies': [
1056 'base_unittests', 1056 'base_unittests',
1057 ], 1057 ],
1058 'includes': [ 1058 'includes': [
1059 '../build/isolate.gypi',
1059 'base_unittests.isolate', 1060 'base_unittests.isolate',
1060 ], 1061 ],
1061 'actions': [ 1062 'sources': [
1062 { 1063 'base_unittests.isolate',
1063 'action_name': 'isolate',
1064 'inputs': [
1065 'base_unittests.isolate',
1066 '<@(isolate_dependency_tracked)',
1067 ],
1068 'outputs': [
1069 '<(PRODUCT_DIR)/base_unittests.isolated',
1070 ],
1071 'action': [
1072 'python',
1073 '../tools/swarm_client/isolate.py',
1074 '<(test_isolation_mode)',
1075 '--outdir', '<(test_isolation_outdir)',
1076 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
1077 '--variable', 'OS', '<(OS)',
1078 '--result', '<@(_outputs)',
1079 '--isolate', 'base_unittests.isolate',
1080 ],
1081 },
1082 ], 1064 ],
1083 }, 1065 },
1084 ], 1066 ],
1085 }], 1067 }],
1086 ], 1068 ],
1087 } 1069 }
OLDNEW
« no previous file with comments | « no previous file | build/isolate.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698