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 'conditions': [ | 6 'conditions': [ |
7 ['archive_chromoting_tests==1', { | 7 ['archive_chromoting_tests==1', { |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'chromoting_integration_tests_run', | 10 'target_name': 'chromoting_integration_tests_run', |
11 'type': 'none', | 11 'type': 'none', |
12 'dependencies': [ | 12 'dependencies': [ |
13 '../../chrome/chrome.gyp:browser_tests', | 13 '../../chrome/chrome.gyp:browser_tests', |
14 '../../remoting/remoting.gyp:remoting_webapp_v1', | 14 '../../remoting/remoting.gyp:remoting_webapp_v1', |
15 ], | 15 ], |
16 'includes': [ | 16 'includes': [ |
17 '../../build/isolate.gypi', | 17 '../../build/isolate.gypi', |
18 ], | 18 ], |
19 'sources': [ | 19 'sources': [ |
20 'chromoting_integration_tests.isolate', | 20 'chromoting_integration_tests.isolate', |
21 ], | 21 ], |
22 'actions': [ | |
23 { | |
24 'action_name': 'Copy python wrapper.', | |
25 'inputs': [ | |
26 '<(DEPTH)/build/cp.py', | |
27 './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.
| |
28 ], | |
29 'outputs': [ | |
30 '<(PRODUCT_DIR)/browser_tests_launcher.py', | |
31 ], | |
32 'action': [ | |
33 'python', | |
34 '<@(_inputs)', | |
35 '<@(_outputs)', | |
36 ] | |
37 }, | |
38 { | |
39 'action_name': 'Copy file having list of browser-test commands.', | |
40 'inputs': [ | |
41 '<(DEPTH)/build/cp.py', | |
42 './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.
| |
43 ], | |
44 'outputs': [ | |
45 '<(PRODUCT_DIR)/browser_test_commands_linux.txt', | |
46 ], | |
47 'action': [ | |
48 'python', | |
49 '<@(_inputs)', | |
50 '<@(_outputs)', | |
51 ] | |
52 }, | |
53 ], | |
22 }, | 54 }, |
23 ], | 55 ], |
24 }], | 56 }], |
25 ], | 57 ], |
26 } | 58 } |
OLD | NEW |