Chromium Code Reviews| Index: testing/chromoting/integration_tests.gyp |
| diff --git a/testing/chromoting/integration_tests.gyp b/testing/chromoting/integration_tests.gyp |
| index 40c80eeed89d5295509cd905b9b420c859b8f693..a7d733263c8232832329d7728b97c2e59280dbe9 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', |
| + 'input_files': './test_files.txt', |
|
joedow
2015/07/13 19:10:12
Does it make sense to have a single file which has
anandc
2015/07/14 01:03:07
Good suggestion.
I tried listing the files as a va
|
| + 'output_folder': './', |
| + }, |
| + 'inputs': [ |
| + '<(input_files)', |
| + ], |
| + 'outputs': [ |
| + '<(output_folder)', |
| + ], |
| + 'action': [ |
| + 'python', |
| + '<(dl_files_script)', |
| + '--input_files', |
| + '<(input_files)', |
| + '--output_folder', |
| + '<(output_folder)', |
| + ], |
| + 'message': 'Downloading required Remoting test files.', |
|
joedow
2015/07/13 19:10:12
I think message should say "Downloading required c
anandc
2015/07/14 01:03:07
Done.
|
| + }, |
| + ], |
| }, # target_name: 'chromoting_integration_tests_run' |
| ], |
| }], |