OLD | NEW |
1 # Copyright 2015 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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'shell_interfaces', | 8 'target_name': 'shell_interfaces', |
9 'type': 'none', | 9 'type': 'none', |
10 'variables': { | 10 'variables': { |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 'dependencies': [ | 241 'dependencies': [ |
242 'shell_public', | 242 'shell_public', |
243 '<(DEPTH)/base/base.gyp:base', | 243 '<(DEPTH)/base/base.gyp:base', |
244 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', | 244 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', |
245 '<(DEPTH)/testing/gtest.gyp:gtest', | 245 '<(DEPTH)/testing/gtest.gyp:gtest', |
246 ], | 246 ], |
247 'sources': [ | 247 'sources': [ |
248 'public/cpp/tests/interface_registry_unittest.cc', | 248 'public/cpp/tests/interface_registry_unittest.cc', |
249 ], | 249 ], |
250 }], | 250 }], |
| 251 'conditions': [ |
| 252 ['test_isolation_mode != "noop"', { |
| 253 'targets': [ |
| 254 { |
| 255 'target_name': 'mojo_shell_unittests_run', |
| 256 'type': 'none', |
| 257 'dependencies': [ |
| 258 'mojo_shell_unittests', |
| 259 ], |
| 260 'includes': [ |
| 261 '../../build/isolate.gypi', |
| 262 ], |
| 263 'sources': [ |
| 264 'mojo_shell_unittests.isolate', |
| 265 ], |
| 266 }, |
| 267 ], |
| 268 }], |
| 269 ], |
251 } | 270 } |
OLD | NEW |