Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: testing/chromoting/integration_tests.gyp

Issue 657433002: Python wrapper to launch Chromoting browser-tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Include python wrapper in build output. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW
« testing/chromoting/browser_tests_launcher.py ('K') | « testing/chromoting/browser_tests_launcher.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698