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 'test/data/data_pack_unittest/truncated-header.pak', | 10 'test/data/data_pack_unittest/truncated-header.pak', |
(...skipping 13 matching lines...) Expand all Loading... |
24 ['OS=="linux"', { | 24 ['OS=="linux"', { |
25 'variables': { | 25 'variables': { |
26 'command': [ | 26 'command': [ |
27 '../../testing/xvfb.py', | 27 '../../testing/xvfb.py', |
28 '<(PRODUCT_DIR)', | 28 '<(PRODUCT_DIR)', |
29 '<(PRODUCT_DIR)/ui_base_unittests<(EXECUTABLE_SUFFIX)', | 29 '<(PRODUCT_DIR)/ui_base_unittests<(EXECUTABLE_SUFFIX)', |
30 '--brave-new-test-launcher', | 30 '--brave-new-test-launcher', |
31 '--test-launcher-bot-mode', | 31 '--test-launcher-bot-mode', |
32 '--asan=<(asan)', | 32 '--asan=<(asan)', |
33 '--lsan=<(lsan)', | 33 '--lsan=<(lsan)', |
| 34 '--msan=<(msan)', |
| 35 '--tsan=<(tsan)', |
34 ], | 36 ], |
35 'files': [ | 37 'files': [ |
36 '../../testing/xvfb.py', | 38 '../../testing/xvfb.py', |
37 '<(PRODUCT_DIR)/libosmesa.so', | 39 '<(PRODUCT_DIR)/libosmesa.so', |
38 ], | 40 ], |
39 }, | 41 }, |
40 }], | 42 }], |
41 ['OS=="linux" and use_ozone==0', { | 43 ['OS=="linux" and use_ozone==0', { |
42 'variables': { | 44 'variables': { |
43 'files': [ | 45 'files': [ |
(...skipping 18 matching lines...) Expand all Loading... |
62 }], | 64 }], |
63 ['OS=="mac" or OS=="win"', { | 65 ['OS=="mac" or OS=="win"', { |
64 'variables': { | 66 'variables': { |
65 'command': [ | 67 'command': [ |
66 '../../testing/test_env.py', | 68 '../../testing/test_env.py', |
67 '<(PRODUCT_DIR)/ui_base_unittests<(EXECUTABLE_SUFFIX)', | 69 '<(PRODUCT_DIR)/ui_base_unittests<(EXECUTABLE_SUFFIX)', |
68 '--brave-new-test-launcher', | 70 '--brave-new-test-launcher', |
69 '--test-launcher-bot-mode', | 71 '--test-launcher-bot-mode', |
70 '--asan=<(asan)', | 72 '--asan=<(asan)', |
71 '--lsan=<(lsan)', | 73 '--lsan=<(lsan)', |
| 74 '--msan=<(msan)', |
| 75 '--tsan=<(tsan)', |
72 ], | 76 ], |
73 }, | 77 }, |
74 }], | 78 }], |
75 ], | 79 ], |
76 'includes': [ | 80 'includes': [ |
77 '../../base/base.isolate', | 81 '../../base/base.isolate', |
78 ], | 82 ], |
79 } | 83 } |
OLD | NEW |