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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
133 'python', | 133 'python', |
134 'android/jni_generator/jni_generator.py', | 134 'android/jni_generator/jni_generator.py', |
135 '-o', | 135 '-o', |
136 '<@(_inputs)', | 136 '<@(_inputs)', |
137 '<@(_outputs)', | 137 '<@(_outputs)', |
138 ], | 138 ], |
139 } | 139 } |
140 ], | 140 ], |
141 }, | 141 }, |
142 { | 142 { |
143 'target_name': 'run_all_unittests', | |
144 'type': 'static_library', | |
145 'dependencies': [ | |
146 'test_support_base', | |
147 ], | |
148 'export_dependent_settings': [ | |
149 'test_support_base', | |
Ryan Sleevi
2012/03/16 02:45:25
Could you explain the motivation for the export_de
akalin
2012/03/16 06:59:20
Actually, come to think of it, I don't think it's
| |
150 ], | |
151 'sources': [ | |
152 'test/run_all_unittests.cc', | |
153 ], | |
154 }, | |
155 { | |
143 'target_name': 'base_unittests', | 156 'target_name': 'base_unittests', |
144 'type': 'executable', | 157 'type': 'executable', |
145 'sources': [ | 158 'sources': [ |
146 # Infrastructure files. | |
147 'test/run_all_unittests.cc', | |
148 | |
149 # Tests. | 159 # Tests. |
150 'android/jni_android_unittest.cc', | 160 'android/jni_android_unittest.cc', |
151 'android/scoped_java_ref_unittest.cc', | 161 'android/scoped_java_ref_unittest.cc', |
152 'at_exit_unittest.cc', | 162 'at_exit_unittest.cc', |
153 'atomicops_unittest.cc', | 163 'atomicops_unittest.cc', |
154 'base64_unittest.cc', | 164 'base64_unittest.cc', |
155 'bind_helpers_unittest.cc', | 165 'bind_helpers_unittest.cc', |
156 'bind_unittest.cc', | 166 'bind_unittest.cc', |
157 'bind_unittest.nc', | 167 'bind_unittest.nc', |
158 'bits_unittest.cc', | 168 'bits_unittest.cc', |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
288 'win/scoped_bstr_unittest.cc', | 298 'win/scoped_bstr_unittest.cc', |
289 'win/scoped_comptr_unittest.cc', | 299 'win/scoped_comptr_unittest.cc', |
290 'win/scoped_variant_unittest.cc', | 300 'win/scoped_variant_unittest.cc', |
291 'win/win_util_unittest.cc', | 301 'win/win_util_unittest.cc', |
292 'win/wrapped_window_proc_unittest.cc', | 302 'win/wrapped_window_proc_unittest.cc', |
293 ], | 303 ], |
294 'dependencies': [ | 304 'dependencies': [ |
295 'base', | 305 'base', |
296 'base_i18n', | 306 'base_i18n', |
297 'base_static', | 307 'base_static', |
308 'run_all_unittests', | |
298 'test_support_base', | 309 'test_support_base', |
299 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions', | 310 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions', |
300 '../testing/gmock.gyp:gmock', | 311 '../testing/gmock.gyp:gmock', |
301 '../testing/gtest.gyp:gtest', | 312 '../testing/gtest.gyp:gtest', |
302 '../third_party/icu/icu.gyp:icui18n', | 313 '../third_party/icu/icu.gyp:icui18n', |
303 '../third_party/icu/icu.gyp:icuuc', | 314 '../third_party/icu/icu.gyp:icuuc', |
304 ], | 315 ], |
305 'includes': ['../build/nocompile.gypi'], | 316 'includes': ['../build/nocompile.gypi'], |
306 'variables': { | 317 'variables': { |
307 # TODO(ajwong): Is there a way to autodetect this? | 318 # TODO(ajwong): Is there a way to autodetect this? |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
639 # treated as weak imports in dependents, who still must | 650 # treated as weak imports in dependents, who still must |
640 # #include closure_blocks_leopard_compat.h to get weak imports. | 651 # #include closure_blocks_leopard_compat.h to get weak imports. |
641 'type': 'none', | 652 'type': 'none', |
642 }], | 653 }], |
643 ], | 654 ], |
644 }, | 655 }, |
645 ], | 656 ], |
646 }], | 657 }], |
647 ], | 658 ], |
648 } | 659 } |
OLD | NEW |