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 'crypto.gypi', | 10 'crypto.gypi', |
(...skipping 279 matching lines...) Loading... |
290 ], | 290 ], |
291 } | 291 } |
292 ]}, { # use_nss==0 | 292 ]}, { # use_nss==0 |
293 'targets': [ | 293 'targets': [ |
294 { | 294 { |
295 'target_name': 'crypto_test_support', | 295 'target_name': 'crypto_test_support', |
296 'type': 'none', | 296 'type': 'none', |
297 'sources': [], | 297 'sources': [], |
298 } | 298 } |
299 ]}], | 299 ]}], |
| 300 ['test_isolation_mode != "noop"', { |
| 301 'targets': [ |
| 302 { |
| 303 'target_name': 'crypto_unittests_run', |
| 304 'type': 'none', |
| 305 'dependencies': [ |
| 306 'crypto_unittests', |
| 307 ], |
| 308 'includes': [ |
| 309 '../build/isolate.gypi', |
| 310 ], |
| 311 'sources': [ |
| 312 'crypto_unittests.isolate', |
| 313 ], |
| 314 }, |
| 315 ], |
| 316 }], |
300 ], | 317 ], |
301 } | 318 } |
OLD | NEW |