OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 { | |
5 'conditions': [ | |
6 ['OS=="linux"', { | |
7 'variables': { | |
8 'command': [ | |
anandc1
2014/08/29 21:11:29
Has this succeeded when you run this on a Linux ma
M-A Ruel
2014/08/29 21:14:23
All the Chromium build slaves have the sandbox set
Lei Lei
2014/08/29 22:19:44
Yes, I ran it on both my dev box and swarming linu
| |
9 '../xvfb.py', | |
10 '<(PRODUCT_DIR)', | |
11 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | |
12 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch', | |
13 '--run-manual', | |
14 '--ui-test-action-timeout=100000', | |
15 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp', | |
16 '--extension-name=Chromoting', | |
anandc1
2014/08/29 21:11:28
For Chromium builds, this extension name should wo
Lei Lei
2014/08/29 22:19:45
We will build extension by ourselves, so the name
| |
17 '--enable-pixel-output-in-tests', | |
anandc1
2014/08/29 21:11:28
This is not essential, so may be removed.
Lei Lei
2014/08/29 22:19:44
Done.
| |
18 ], | |
19 'isolate_dependency_tracked': [ | |
20 '<(PRODUCT_DIR)/libffmpegsumo.so', | |
21 '<(PRODUCT_DIR)/libosmesa.so', | |
22 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', | |
23 ], | |
24 }, | |
25 }], | |
26 ['OS=="linux" or OS=="mac" or OS=="win"', { | |
27 'variables': { | |
28 'isolate_dependency_tracked': [ | |
29 '../xvfb.py', | |
M-A Ruel
2014/08/29 20:57:16
Move it to line 20
Lei Lei
2014/08/29 22:19:45
Done.
| |
30 '../test_env.py', | |
31 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', | |
M-A Ruel
2014/08/29 20:57:16
Move it to line 20
Lei Lei
2014/08/29 22:19:45
Done.
| |
32 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | |
33 '<(PRODUCT_DIR)/chrome_100_percent.pak', | |
34 '<(PRODUCT_DIR)/resources.pak', | |
35 '<(PRODUCT_DIR)/locales/', | |
36 '<(PRODUCT_DIR)/remoting/remoting.webapp/', | |
37 ], | |
38 'read_only': 1, | |
39 }, | |
40 }], | |
41 ['OS=="mac" or OS=="win"', { | |
42 'variables': { | |
43 'command': [ | |
44 '../testing/test_env.py', | |
45 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | |
46 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch', | |
47 '--run-manual', | |
48 '--ui-test-action-timeout=100000', | |
49 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp', | |
50 '--extension-name=Chromoting', | |
51 '--enable-pixel-output-in-tests' | |
52 ], | |
53 }, | |
54 }], | |
55 ], | |
56 'includes': [ | |
57 '../../base/base.isolate', | |
58 ], | |
59 } | |
OLD | NEW |