Chromium Code Reviews| Index: testing/chromoting/integration_tests.gyp |
| diff --git a/testing/chromoting/integration_tests.gyp b/testing/chromoting/integration_tests.gyp |
| index b6c801d5c704fd7cae218d4472e0b7ffb29e3bb0..314858d949b2c45d4bb425bef188b939280f048c 100644 |
| --- a/testing/chromoting/integration_tests.gyp |
| +++ b/testing/chromoting/integration_tests.gyp |
| @@ -19,6 +19,38 @@ |
| 'sources': [ |
| 'chromoting_integration_tests.isolate', |
| ], |
| + 'actions': [ |
| + { |
| + 'action_name': 'Copy python wrapper.', |
| + 'inputs': [ |
| + '<(DEPTH)/build/cp.py', |
| + './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.
|
| + ], |
| + 'outputs': [ |
| + '<(PRODUCT_DIR)/browser_tests_launcher.py', |
| + ], |
| + 'action': [ |
| + 'python', |
| + '<@(_inputs)', |
| + '<@(_outputs)', |
| + ] |
| + }, |
| + { |
| + 'action_name': 'Copy file having list of browser-test commands.', |
| + 'inputs': [ |
| + '<(DEPTH)/build/cp.py', |
| + './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.
|
| + ], |
| + 'outputs': [ |
| + '<(PRODUCT_DIR)/browser_test_commands_linux.txt', |
| + ], |
| + 'action': [ |
| + 'python', |
| + '<@(_inputs)', |
| + '<@(_outputs)', |
| + ] |
| + }, |
| + ], |
| }, |
| ], |
| }], |