OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2015 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 'variables': { | |
6 'files': [ | |
7 '<(PRODUCT_DIR)/content_shell.pak', | |
8 'tests/data/', | |
9 # Required by some image decoder tests. | |
10 '../platform/image-decoders/testing/', | |
11 '../../LayoutTests/fast/images/resources/', | |
12 # Required by some font tests. | |
13 '../platform/testing/data/', | |
14 ], | |
15 }, | |
16 'conditions': [ | |
17 ['use_x11==0', { | |
18 'variables': { | |
19 'command': [ | |
20 '<(DEPTH)/testing/test_env.py', | |
21 '<(PRODUCT_DIR)/webkit_unit_tests<(EXECUTABLE_SUFFIX)', | |
22 '--brave-new-test-launcher', | |
23 '--test-launcher-bot-mode', | |
24 '--asan=<(asan)', | |
25 '--msan=<(msan)', | |
26 '--tsan=<(tsan)', | |
27 ], | |
28 }, | |
29 }], | |
30 ['use_x11==1', { | |
31 'variables': { | |
32 'command': [ | |
33 '<(DEPTH)/testing/xvfb.py', | |
34 '<(PRODUCT_DIR)', | |
35 '<(PRODUCT_DIR)/webkit_unit_tests<(EXECUTABLE_SUFFIX)', | |
36 '--brave-new-test-launcher', | |
37 '--test-launcher-bot-mode', | |
38 '--asan=<(asan)', | |
39 '--msan=<(msan)', | |
40 '--tsan=<(tsan)', | |
41 ], | |
42 }, | |
43 }], | |
44 ['OS=="linux" or OS=="mac" or OS=="win"', { | |
45 'variables': { | |
46 'files': [ | |
47 '<(DEPTH)/testing/test_env.py', | |
48 '<(DEPTH)/testing/xvfb.py', | |
M-A Ruel
2015/09/01 12:56:47
This should only be mapped when use_x11==1
joelo
2015/09/01 19:44:36
Removed
| |
49 '<(PRODUCT_DIR)/webkit_unit_tests<(EXECUTABLE_SUFFIX)', | |
50 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', | |
M-A Ruel
2015/09/01 12:56:47
This file doesn't exist unless use_x11==11
joelo
2015/09/01 19:44:36
Removed
| |
51 ], | |
52 }, | |
53 }], | |
54 ], | |
55 'includes': [ | |
56 '../../../../base/base.isolate', | |
57 '../../../../gin/v8.isolate', | |
58 # Required on Android to copy icudtl.dat to a device. | |
59 "../../../../third_party/icu/icu.isolate", | |
60 ], | |
61 } | |
OLD | NEW |