summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authormaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-20 04:16:31 +0000
committermaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-20 04:16:31 +0000
commit88494710ef505cc02aef5b51f2340b4d53508310 (patch)
tree4125810ffaed45a5a662b0162b288102426328a8 /third_party
parent0f75d3099bfcf1b6405153cd6ec6b12d1348c98a (diff)
downloadchromium_src-88494710ef505cc02aef5b51f2340b4d53508310.zip
chromium_src-88494710ef505cc02aef5b51f2340b4d53508310.tar.gz
chromium_src-88494710ef505cc02aef5b51f2340b4d53508310.tar.bz2
Convert all the foo_test_run from using actions to use rules.
This removes a lot of the duplication of the exact details about how to run isolate.py exactly.. This will permit inserting arbitrary command line arguments eventually, for --subdir support. TBR=csharp@chromium.org BUG= Review URL: https://chromiumcodereview.appspot.com/11236005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163144 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r--third_party/cacheinvalidation/README.chromium2
-rw-r--r--third_party/cacheinvalidation/cacheinvalidation.gyp24
2 files changed, 4 insertions, 22 deletions
diff --git a/third_party/cacheinvalidation/README.chromium b/third_party/cacheinvalidation/README.chromium
index 3508f1e..ad5d645 100644
--- a/third_party/cacheinvalidation/README.chromium
+++ b/third_party/cacheinvalidation/README.chromium
@@ -10,4 +10,4 @@ Description:
This is the API to talk to the Google Cache Invalidation service.
Local Modifications:
-None
+None.
diff --git a/third_party/cacheinvalidation/cacheinvalidation.gyp b/third_party/cacheinvalidation/cacheinvalidation.gyp
index 2271a38..2e71733 100644
--- a/third_party/cacheinvalidation/cacheinvalidation.gyp
+++ b/third_party/cacheinvalidation/cacheinvalidation.gyp
@@ -157,29 +157,11 @@
'cacheinvalidation_unittests',
],
'includes': [
+ '../../build/isolate.gypi',
'cacheinvalidation_unittests.isolate',
],
- 'actions': [
- {
- 'action_name': 'isolate',
- 'inputs': [
- 'cacheinvalidation_unittests.isolate',
- '<@(isolate_dependency_tracked)',
- ],
- 'outputs': [
- '<(PRODUCT_DIR)/cacheinvalidation_unittests.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', 'cacheinvalidation_unittests.isolate',
- ],
- },
+ 'sources': [
+ 'cacheinvalidation_unittests.isolate',
],
},
],