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 '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
| |
56 'output_folder': './', | |
57 }, | |
58 'inputs': [ | |
59 '<(input_files)', | |
60 ], | |
61 'outputs': [ | |
62 '<(output_folder)', | |
63 ], | |
64 'action': [ | |
65 'python', | |
66 '<(dl_files_script)', | |
67 '--input_files', | |
68 '<(input_files)', | |
69 '--output_folder', | |
70 '<(output_folder)', | |
71 ], | |
72 '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.
| |
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 |