OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 { |
| 6 'variables': { |
| 7 'files': [ |
| 8 '<(PRODUCT_DIR)/gin_shell<(EXECUTABLE_SUFFIX)', |
| 9 '<(PRODUCT_DIR)/gin_unittests<(EXECUTABLE_SUFFIX)', |
| 10 'modules/module_registry_unittests.js', |
| 11 'shell/hello_world.js', |
| 12 'test/expect.js', |
| 13 'test/file_unittests.js', |
| 14 'test/gtest_unittests.js', |
| 15 '../OWNERS', |
| 16 ], |
| 17 }, |
5 'conditions': [ | 18 'conditions': [ |
6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { | 19 ['OS=="linux" or OS=="mac" or OS=="win"', { |
7 'variables': { | 20 'variables': { |
8 'files': [ | 21 'files': [ |
9 'data/', | 22 '../testing/test_env.py', |
10 ], | 23 ], |
11 }, | |
12 }], | |
13 ['OS=="linux" or OS=="mac" or OS=="win"', { | |
14 'variables': { | |
15 'command': [ | 24 'command': [ |
16 '../testing/test_env.py', | 25 '../testing/test_env.py', |
17 '<(PRODUCT_DIR)/net_unittests<(EXECUTABLE_SUFFIX)', | 26 '<(PRODUCT_DIR)/gin_unittests<(EXECUTABLE_SUFFIX)', |
18 '--brave-new-test-launcher', | 27 '--brave-new-test-launcher', |
19 '--test-launcher-bot-mode', | 28 '--test-launcher-bot-mode', |
20 '--asan=<(asan)', | 29 '--asan=<(asan)', |
21 '--msan=<(msan)', | 30 '--msan=<(msan)', |
22 '--tsan=<(tsan)', | 31 '--tsan=<(tsan)', |
23 ], | 32 ], |
24 'files': [ | |
25 '../testing/test_env.py', | |
26 '../third_party/pyftpdlib/', | |
27 '../third_party/pywebsocket/', | |
28 '../third_party/tlslite/', | |
29 '<(PRODUCT_DIR)/pyproto/google/', | |
30 'tools/testserver/', | |
31 ], | |
32 }, | 33 }, |
33 }], | 34 }], |
34 ['OS=="mac" and asan==1 and fastbuild==0', { | 35 ['OS=="mac" and asan==1 and fastbuild==0', { |
35 'variables': { | 36 'variables': { |
36 'files': [ | 37 'files': [ |
37 '<(PRODUCT_DIR)/net_unittests.dSYM/', | 38 '<(PRODUCT_DIR)/gin_shell.dSYM/', |
| 39 '<(PRODUCT_DIR)/gin_unittests.dSYM/', |
38 ], | 40 ], |
39 }, | 41 }, |
40 }], | 42 }], |
41 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { | 43 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { |
42 'variables': { | 44 'variables': { |
43 'files': [ | 45 'files': [ |
44 '<(PRODUCT_DIR)/net_unittests.exe.pdb', | 46 '<(PRODUCT_DIR)/gin_shell.exe.pdb', |
| 47 '<(PRODUCT_DIR)/gin_unittests.exe.pdb', |
45 ], | 48 ], |
46 }, | 49 }, |
47 }], | 50 }], |
48 ], | 51 ], |
49 'includes': [ | 52 'includes': [ |
50 '../base/base.isolate', | 53 '../base/base.isolate', |
51 '../gin/v8.isolate', | 54 '../gin/v8.isolate', |
52 ], | 55 ], |
53 } | 56 } |
OLD | NEW |