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

Unified Diff: chrome/chrome_tests.gypi

Issue 10262028: Add browser_tests_run and ui_tests_run. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser_tests.isolate ('k') | chrome/ui_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..027b93e713f18f2d78b6d093a6abc16e415540d1 100644
--- a/chrome/chrome_tests.gypi
+++ b/chrome/chrome_tests.gypi
@@ -791,6 +791,36 @@
],
},
{
+ 'target_name': 'ui_tests_run',
+ 'type': 'none',
+ 'dependencies': [
+ 'ui_tests',
+ ],
+ 'includes': [
+ 'ui_tests.isolate',
+ ],
+ 'actions': [
+ {
+ 'action_name': 'isolate',
+ 'inputs': [
+ '<@(isolate_dependency_tracked)',
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/ui_tests.results',
+ ],
+ 'action': [
+ 'python',
+ '../tools/isolate/isolate.py',
+ '--mode', '<(tests_run)',
+ '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
+ '--variable', 'OS', '<(OS)',
+ '--result', '<@(_outputs)',
+ 'ui_tests.isolate',
+ ],
+ },
+ ],
+ },
+ {
# Third-party support sources for chromedriver_lib.
'target_name': 'chromedriver_support',
'type': 'static_library',
@@ -3387,6 +3417,36 @@
], # conditions
}, # target browser_tests
{
+ 'target_name': 'browser_tests_run',
+ 'type': 'none',
+ 'dependencies': [
+ 'browser_tests',
+ ],
+ 'includes': [
+ 'browser_tests.isolate',
+ ],
+ 'actions': [
+ {
+ 'action_name': 'isolate',
+ 'inputs': [
+ '<@(isolate_dependency_tracked)',
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/browser_tests.results',
+ ],
+ 'action': [
+ 'python',
+ '../tools/isolate/isolate.py',
+ '--mode', '<(tests_run)',
+ '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
+ '--variable', 'OS', '<(OS)',
+ '--result', '<@(_outputs)',
+ 'browser_tests.isolate',
+ ],
+ },
+ ],
+ },
+ {
# Executable that runs each perf browser test in a new process.
'target_name': 'performance_browser_tests',
'type': 'executable',
« no previous file with comments | « chrome/browser_tests.isolate ('k') | chrome/ui_tests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698