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/', | |
13 '../OWNERS', | |
Paweł Hajdan Jr.
2015/12/07 16:25:40
Why is this needed?
jochen (gone - plz use gerrit)
2015/12/07 16:29:07
it's needed here: https://code.google.com/p/chromi
| |
14 ], | |
15 }, | |
5 'conditions': [ | 16 'conditions': [ |
6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { | 17 ['OS=="linux" or OS=="mac" or OS=="win"', { |
7 'variables': { | 18 'variables': { |
8 'files': [ | 19 'files': [ |
9 'data/', | 20 '../testing/test_env.py', |
10 ], | 21 ], |
11 }, | |
12 }], | |
13 ['OS=="linux" or OS=="mac" or OS=="win"', { | |
14 'variables': { | |
15 'command': [ | 22 'command': [ |
16 '../testing/test_env.py', | 23 '../testing/test_env.py', |
17 '<(PRODUCT_DIR)/net_unittests<(EXECUTABLE_SUFFIX)', | 24 '<(PRODUCT_DIR)/gin_unittests<(EXECUTABLE_SUFFIX)', |
18 '--brave-new-test-launcher', | 25 '--brave-new-test-launcher', |
19 '--test-launcher-bot-mode', | 26 '--test-launcher-bot-mode', |
20 '--asan=<(asan)', | 27 '--asan=<(asan)', |
21 '--msan=<(msan)', | 28 '--msan=<(msan)', |
22 '--tsan=<(tsan)', | 29 '--tsan=<(tsan)', |
23 ], | 30 ], |
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 }, | 31 }, |
33 }], | 32 }], |
34 ['OS=="mac" and asan==1 and fastbuild==0', { | 33 ['OS=="mac" and asan==1 and fastbuild==0', { |
35 'variables': { | 34 'variables': { |
36 'files': [ | 35 'files': [ |
37 '<(PRODUCT_DIR)/net_unittests.dSYM/', | 36 '<(PRODUCT_DIR)/gin_shell.dSYM/', |
37 '<(PRODUCT_DIR)/gin_unittests.dSYM/', | |
38 ], | 38 ], |
39 }, | 39 }, |
40 }], | 40 }], |
41 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { | 41 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { |
42 'variables': { | 42 'variables': { |
43 'files': [ | 43 'files': [ |
44 '<(PRODUCT_DIR)/net_unittests.exe.pdb', | 44 '<(PRODUCT_DIR)/gin_shell.exe.pdb', |
45 '<(PRODUCT_DIR)/gin_unittests.exe.pdb', | |
45 ], | 46 ], |
46 }, | 47 }, |
47 }], | 48 }], |
48 ], | 49 ], |
49 'includes': [ | 50 'includes': [ |
50 '../base/base.isolate', | 51 '../base/base.isolate', |
51 '../gin/v8.isolate', | 52 '../gin/v8.isolate', |
52 ], | 53 ], |
53 } | 54 } |
OLD | NEW |