OLD | NEW |
---|---|
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 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 | 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 '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 }, | |
5 'conditions': [ | 16 'conditions': [ |
6 ['OS=="linux" or OS=="mac" or OS=="win"', { | 17 ['OS=="linux" or OS=="mac" or OS=="win"', { |
7 'variables': { | 18 'variables': { |
8 'command': [ | 19 'command': [ |
9 '<(DEPTH)/testing/test_env.py', | 20 '<(DEPTH)/testing/test_env.py', |
10 '<(PRODUCT_DIR)/blink_heap_unittests<(EXECUTABLE_SUFFIX)', | 21 '<(PRODUCT_DIR)/webkit_unit_tests<(EXECUTABLE_SUFFIX)', |
11 '--brave-new-test-launcher', | 22 '--brave-new-test-launcher', |
12 '--test-launcher-bot-mode', | 23 '--test-launcher-bot-mode', |
13 '--asan=<(asan)', | 24 '--asan=<(asan)', |
14 '--msan=<(msan)', | 25 '--msan=<(msan)', |
15 '--tsan=<(tsan)', | 26 '--tsan=<(tsan)', |
16 ], | 27 » ], |
M-A Ruel
2015/09/01 19:52:09
spaces, not tabs
joelo
2015/09/01 20:00:49
oops, done
| |
17 'files': [ | 28 'files': [ |
18 '<(DEPTH)/testing/test_env.py', | 29 '<(DEPTH)/testing/test_env.py', |
19 '<(PRODUCT_DIR)/blink_heap_unittests<(EXECUTABLE_SUFFIX)', | 30 '<(PRODUCT_DIR)/webkit_unit_tests<(EXECUTABLE_SUFFIX)', |
20 ], | 31 ], |
21 }, | 32 }, |
22 }], | 33 }], |
23 ], | 34 ], |
24 'includes': [ | 35 'includes': [ |
25 '../../../../base/base.isolate', | 36 '../../../../base/base.isolate', |
26 '../../../../gin/v8.isolate', | 37 '../../../../gin/v8.isolate', |
38 # Required on Android to copy icudtl.dat to a device. | |
39 "../../../../third_party/icu/icu.isolate", | |
27 ], | 40 ], |
28 } | 41 } |
OLD | NEW |