OLD | NEW |
| (Empty) |
1 # Copyright 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 'includes': [ | |
6 '../base/base.isolate', | |
7 '../gin/v8.isolate', | |
8 ], | |
9 'conditions': [ | |
10 ['OS=="linux" or OS=="mac" or OS=="win"', { | |
11 'variables': { | |
12 'files': [ | |
13 'test/data/', | |
14 '../testing/test_env.py', | |
15 '<(PRODUCT_DIR)/components_browsertests<(EXECUTABLE_SUFFIX)', | |
16 '<(PRODUCT_DIR)/components_resources.pak', | |
17 '<(PRODUCT_DIR)/content_shell.pak', | |
18 ], | |
19 }, | |
20 }], | |
21 ['OS=="linux"', { | |
22 'variables': { | |
23 'command': [ | |
24 '../testing/xvfb.py', | |
25 '<(PRODUCT_DIR)', | |
26 '<(PRODUCT_DIR)/components_browsertests', | |
27 '--brave-new-test-launcher', | |
28 '--test-launcher-bot-mode', | |
29 '--asan=<(asan)', | |
30 '--lsan=<(lsan)', | |
31 ], | |
32 'files': [ | |
33 '../testing/xvfb.py', | |
34 '<(PRODUCT_DIR)/libosmesa.so', | |
35 ], | |
36 }, | |
37 }], | |
38 ['OS=="linux" and use_ozone==0', { | |
39 'variables': { | |
40 'files': [ | |
41 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', | |
42 ], | |
43 }, | |
44 }], | |
45 ['OS=="mac" or OS=="win"', { | |
46 'variables': { | |
47 'command': [ | |
48 '../testing/test_env.py', | |
49 '<(PRODUCT_DIR)/components_browsertests<(EXECUTABLE_SUFFIX)', | |
50 '--brave-new-test-launcher', | |
51 '--test-launcher-bot-mode', | |
52 '--asan=<(asan)', | |
53 '--lsan=<(lsan)', | |
54 ], | |
55 }, | |
56 }], | |
57 ['OS=="mac"', { | |
58 'variables': { | |
59 'files': [ | |
60 '<(PRODUCT_DIR)/Content Shell.app/', | |
61 ], | |
62 }, | |
63 }], | |
64 ], | |
65 } | |
OLD | NEW |