OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'gin_gen_path': '<(SHARED_INTERMEDIATE_DIR)/gin/', | 8 'gin_gen_path': '<(SHARED_INTERMEDIATE_DIR)/gin/', |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 'test/v8_test.cc', | 149 'test/v8_test.cc', |
150 'test/v8_test.h', | 150 'test/v8_test.h', |
151 ], | 151 ], |
152 }, | 152 }, |
153 { | 153 { |
154 'target_name': 'gin_unittests', | 154 'target_name': 'gin_unittests', |
155 'type': 'executable', | 155 'type': 'executable', |
156 'dependencies': [ | 156 'dependencies': [ |
157 '../base/base.gyp:test_support_base', | 157 '../base/base.gyp:test_support_base', |
158 '../v8/tools/gyp/v8.gyp:v8', | 158 '../v8/tools/gyp/v8.gyp:v8', |
| 159 'gin_shell', |
159 'gin_test', | 160 'gin_test', |
160 ], | 161 ], |
161 'sources': [ | 162 'sources': [ |
162 'converter_unittest.cc', | 163 'converter_unittest.cc', |
163 'interceptor_unittest.cc', | 164 'interceptor_unittest.cc', |
164 'modules/module_registry_unittest.cc', | 165 'modules/module_registry_unittest.cc', |
165 'modules/timer_unittest.cc', | 166 'modules/timer_unittest.cc', |
166 'per_context_data_unittest.cc', | 167 'per_context_data_unittest.cc', |
167 'shell_runner_unittest.cc', | 168 'shell_runner_unittest.cc', |
168 'shell/gin_shell_unittest.cc', | 169 'shell/gin_shell_unittest.cc', |
169 'test/run_all_unittests.cc', | 170 'test/run_all_unittests.cc', |
170 'test/run_js_tests.cc', | 171 'test/run_js_tests.cc', |
171 'v8_isolate_memory_dump_provider_unittest.cc', | 172 'v8_isolate_memory_dump_provider_unittest.cc', |
172 'wrappable_unittest.cc', | 173 'wrappable_unittest.cc', |
173 ], | 174 ], |
174 }, | 175 }, |
175 ], | 176 ], |
| 177 'conditions': [ |
| 178 ['test_isolation_mode != "noop"', { |
| 179 'targets': [ |
| 180 { |
| 181 'target_name': 'gin_unittests_run', |
| 182 'type': 'none', |
| 183 'dependencies': [ |
| 184 'gin_unittests', |
| 185 ], |
| 186 'includes': [ |
| 187 '../build/isolate.gypi', |
| 188 ], |
| 189 'sources': [ |
| 190 'gin_unittests.isolate', |
| 191 ], |
| 192 }, |
| 193 ], |
| 194 }], |
| 195 ], |
176 } | 196 } |
OLD | NEW |