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

Unified Diff: chrome/chrome_tests.gypi

Issue 9693023: Add unit_tests_run. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase against HEAD 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/unit_tests.isolate » ('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 6a02382589a7a3df4edc45126c027479fcbeb92b..f7401a537dbbe0672469cf1a124a084acd1ee8c4 100644
--- a/chrome/chrome_tests.gypi
+++ b/chrome/chrome_tests.gypi
@@ -2600,6 +2600,36 @@
],
},
{
+ 'target_name': 'unit_tests_run',
+ 'type': 'none',
+ 'dependencies': [
+ 'unit_tests',
+ ],
+ 'includes': [
+ 'unit_tests.isolate',
+ ],
+ 'actions': [
+ {
+ 'action_name': 'isolate',
+ 'inputs': [
+ '<@(isolate_dependency_tracked)',
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/unit_tests.results',
+ ],
+ 'action': [
+ 'python',
+ '../tools/isolate/isolate.py',
+ '--mode', '<(tests_run)',
+ '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
+ '--variable', 'OS', '<(OS)',
+ '--result', '<@(_outputs)',
+ 'unit_tests.isolate',
+ ],
+ },
+ ],
+ },
+ {
# Executable that runs each browser test in a new process.
'target_name': 'browser_tests',
'type': 'executable',
« no previous file with comments | « no previous file | chrome/unit_tests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698