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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 'variables': { | 310 'variables': { |
311 'java_in_dir': '../printing/android/java', | 311 'java_in_dir': '../printing/android/java', |
312 }, | 312 }, |
313 'dependencies': [ | 313 'dependencies': [ |
314 '../base/base.gyp:base_java', | 314 '../base/base.gyp:base_java', |
315 ], | 315 ], |
316 'includes': [ '../build/java.gypi' ], | 316 'includes': [ '../build/java.gypi' ], |
317 } | 317 } |
318 ] | 318 ] |
319 }], | 319 }], |
| 320 ['test_isolation_mode != "noop"', { |
| 321 'targets': [ |
| 322 { |
| 323 'target_name': 'printing_unittests_run', |
| 324 'type': 'none', |
| 325 'dependencies': [ |
| 326 'printing_unittests', |
| 327 ], |
| 328 'includes': [ |
| 329 '../build/isolate.gypi', |
| 330 ], |
| 331 'sources': [ |
| 332 'printing_unittests.isolate', |
| 333 ], |
| 334 }, |
| 335 ], |
| 336 }], |
320 ] | 337 ] |
321 } | 338 } |
OLD | NEW |