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

Unified Diff: testing/chromoting/integration_tests.gyp

Issue 657433002: Python wrapper to launch Chromoting browser-tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Include python wrapper in build output. Created 6 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
Index: testing/chromoting/integration_tests.gyp
diff --git a/testing/chromoting/integration_tests.gyp b/testing/chromoting/integration_tests.gyp
index b6c801d5c704fd7cae218d4472e0b7ffb29e3bb0..314858d949b2c45d4bb425bef188b939280f048c 100644
--- a/testing/chromoting/integration_tests.gyp
+++ b/testing/chromoting/integration_tests.gyp
@@ -19,6 +19,38 @@
'sources': [
'chromoting_integration_tests.isolate',
],
+ 'actions': [
+ {
+ 'action_name': 'Copy python wrapper.',
+ 'inputs': [
+ '<(DEPTH)/build/cp.py',
+ './browser_tests_launcher.py',
Lei Lei 2014/10/14 22:54:21 Why do you need to copy it to PRODUCT_DIR? You ca
anandc 2014/10/15 00:48:22 Done.
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/browser_tests_launcher.py',
+ ],
+ 'action': [
+ 'python',
+ '<@(_inputs)',
+ '<@(_outputs)',
+ ]
+ },
+ {
+ 'action_name': 'Copy file having list of browser-test commands.',
+ 'inputs': [
+ '<(DEPTH)/build/cp.py',
+ './browser_test_commands_linux.txt',
Lei Lei 2014/10/14 22:54:21 Same comment with the above one.
anandc 2014/10/15 00:48:22 Done.
+ ],
+ 'outputs': [
+ '<(PRODUCT_DIR)/browser_test_commands_linux.txt',
+ ],
+ 'action': [
+ 'python',
+ '<@(_inputs)',
+ '<@(_outputs)',
+ ]
+ },
+ ],
},
],
}],
« testing/chromoting/browser_tests_launcher.py ('K') | « testing/chromoting/browser_tests_launcher.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698