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

Unified Diff: testing/chromoting/integration_tests.gyp

Issue 1231663003: Add functionality to download files from GCS, and include them in the Chromoting isolate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add copyright header. Created 5 years, 5 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 40c80eeed89d5295509cd905b9b420c859b8f693..23a18ea0fd23f9ed4d7356b28186f978e08e787f 100644
--- a/testing/chromoting/integration_tests.gyp
+++ b/testing/chromoting/integration_tests.gyp
@@ -47,6 +47,31 @@
'sources': [
'chromoting_integration_tests.isolate',
],
+ 'actions': [
+ {
+ 'action_name': 'download_test_files',
+ 'variables': {
+ 'dl_files_script': './download_test_files.py',
+ 'files_list': './chromoting_test_files.txt',
+ 'output_folder': './',
+ },
+ 'inputs': [
+ '<(files_list)',
+ ],
+ 'outputs': [
+ '<(output_folder)',
+ ],
+ 'action': [
+ 'python',
+ '<(dl_files_script)',
+ '--files',
+ '<(files_list)',
+ '--output_folder',
+ '<(output_folder)',
+ ],
+ 'message': 'Downloading required Remoting test files.',
+ },
+ ],
}, # target_name: 'chromoting_integration_tests_run'
],
}],
« testing/chromoting/download_test_files.py ('K') | « testing/chromoting/download_test_files.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698