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

Unified Diff: chrome/chrome_tests.gypi

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/isolate.gypi ('k') | third_party/cacheinvalidation/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_tests.gypi
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi
index 3589aa2ce6f1e0d0f6385c78649cbe4178c45e6e..5bb981fa3a9ef2e116bfd79c606e028bca9b2f85 100644
--- a/chrome/chrome_tests.gypi
+++ b/chrome/chrome_tests.gypi
@@ -4856,28 +4856,11 @@
'unit_tests',
],
'includes': [
+ '../build/isolate.gypi',
'unit_tests.isolate',
],
- 'actions': [
- {
- 'action_name': 'isolate',
- 'inputs': [
- '<@(isolate_dependency_tracked)',
- ],
- 'outputs': [
- '<(PRODUCT_DIR)/unit_tests.isolated',
- ],
- 'action': [
- 'python',
- '../tools/swarm_client/isolate.py',
- '<(test_isolation_mode)',
- '--outdir', '<(test_isolation_outdir)',
- '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
- '--variable', 'OS', '<(OS)',
- '--result', '<@(_outputs)',
- '--isolate', 'unit_tests.isolate',
- ],
- },
+ 'sources': [
+ 'unit_tests.isolate',
],
},
{
@@ -4887,28 +4870,11 @@
'browser_tests',
],
'includes': [
+ '../build/isolate.gypi',
'browser_tests.isolate',
],
- 'actions': [
- {
- 'action_name': 'isolate',
- 'inputs': [
- '<@(isolate_dependency_tracked)',
- ],
- 'outputs': [
- '<(PRODUCT_DIR)/browser_tests.isolated',
- ],
- 'action': [
- 'python',
- '../tools/swarm_client/isolate.py',
- '<(test_isolation_mode)',
- '--outdir', '<(test_isolation_outdir)',
- '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
- '--variable', 'OS', '<(OS)',
- '--result', '<@(_outputs)',
- '--isolate', 'browser_tests.isolate',
- ],
- },
+ 'sources': [
+ 'browser_tests.isolate',
],
},
{
@@ -4925,28 +4891,11 @@
}],
],
'includes': [
+ '../build/isolate.gypi',
'sync_integration_tests.isolate',
],
- 'actions': [
- {
- 'action_name': 'isolate',
- 'inputs': [
- '<@(isolate_dependency_tracked)',
- ],
- 'outputs': [
- '<(PRODUCT_DIR)/sync_integration_tests.isolated',
- ],
- 'action': [
- 'python',
- '../tools/swarm_client/isolate.py',
- '<(test_isolation_mode)',
- '--outdir', '<(test_isolation_outdir)',
- '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
- '--variable', 'OS', '<(OS)',
- '--result', '<@(_outputs)',
- '--isolate', 'sync_integration_tests.isolate',
- ],
- },
+ 'sources': [
+ 'sync_integration_tests.isolate',
],
},
],
« no previous file with comments | « build/isolate.gypi ('k') | third_party/cacheinvalidation/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698