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