OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 ['use_x11==0', { | 6 ['use_x11==0', { |
7 'variables': { | 7 'variables': { |
8 'command': [ | 8 'command': [ |
9 '../testing/test_env.py', | 9 '../testing/test_env.py', |
10 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', | 10 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 }], | 43 }], |
44 ['OS=="linux" or OS=="mac" or OS=="win"', { | 44 ['OS=="linux" or OS=="mac" or OS=="win"', { |
45 'variables': { | 45 'variables': { |
46 'files': [ | 46 'files': [ |
47 '../testing/test_env.py', | 47 '../testing/test_env.py', |
48 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', | 48 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', |
49 ], | 49 ], |
50 'read_only': 1, | 50 'read_only': 1, |
51 }, | 51 }, |
52 }], | 52 }], |
| 53 ['OS=="linux"', { |
| 54 'variables': { |
| 55 'files': [ |
| 56 '<(PRODUCT_DIR)/lib/libmalloc_wrapper.so', |
| 57 ], |
| 58 }, |
| 59 }], |
53 ['OS=="mac" and asan==1 and fastbuild==0', { | 60 ['OS=="mac" and asan==1 and fastbuild==0', { |
54 'variables': { | 61 'variables': { |
55 'files': [ | 62 'files': [ |
56 '<(PRODUCT_DIR)/base_unittests.dSYM/', | 63 '<(PRODUCT_DIR)/base_unittests.dSYM/', |
57 ], | 64 ], |
58 }, | 65 }, |
59 }], | 66 }], |
60 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { | 67 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { |
61 'variables': { | 68 'variables': { |
62 'files': [ | 69 'files': [ |
63 '<(PRODUCT_DIR)/base_unittests.exe.pdb', | 70 '<(PRODUCT_DIR)/base_unittests.exe.pdb', |
64 ], | 71 ], |
65 }, | 72 }, |
66 }], | 73 }], |
67 ], | 74 ], |
68 'includes': [ | 75 'includes': [ |
69 'base.isolate', | 76 'base.isolate', |
70 ], | 77 ], |
71 } | 78 } |
OLD | NEW |