OLD | NEW |
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'run_multi_machine_tests%': '0', | 7 'run_multi_machine_tests%': '0', |
8 }, | 8 }, |
9 | 9 |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 29 matching lines...) Expand all Loading... |
40 ], | 40 ], |
41 'targets': [ | 41 'targets': [ |
42 { | 42 { |
43 'target_name': 'chromoting_integration_tests_run', | 43 'target_name': 'chromoting_integration_tests_run', |
44 'includes': [ | 44 'includes': [ |
45 './dependencies.gypi', | 45 './dependencies.gypi', |
46 ], | 46 ], |
47 'sources': [ | 47 'sources': [ |
48 'chromoting_integration_tests.isolate', | 48 'chromoting_integration_tests.isolate', |
49 ], | 49 ], |
| 50 'actions': [ |
| 51 { |
| 52 'action_name': 'download_test_files', |
| 53 'variables': { |
| 54 'dl_files_script': './download_test_files.py', |
| 55 'files_list': './chromoting_test_files.txt', |
| 56 'output_folder': './', |
| 57 }, |
| 58 'inputs': [ |
| 59 '<(files_list)', |
| 60 ], |
| 61 'outputs': [ |
| 62 '<(output_folder)', |
| 63 ], |
| 64 'action': [ |
| 65 'python', |
| 66 '<(dl_files_script)', |
| 67 '--files', |
| 68 '<(files_list)', |
| 69 '--output_folder', |
| 70 '<(output_folder)', |
| 71 ], |
| 72 'message': 'Downloading required Remoting test files.', |
| 73 }, |
| 74 ], |
50 }, # target_name: 'chromoting_integration_tests_run' | 75 }, # target_name: 'chromoting_integration_tests_run' |
51 ], | 76 ], |
52 }], | 77 }], |
53 ], | 78 ], |
54 } | 79 } |
OLD | NEW |