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 'cc_unit_tests_source_files': [ | 8 'cc_unit_tests_source_files': [ |
9 'animation/animation_unittest.cc', | 9 'animation/animation_unittest.cc', |
10 'animation/keyframed_animation_curve_unittest.cc', | 10 'animation/keyframed_animation_curve_unittest.cc', |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 'dependencies': [ | 437 'dependencies': [ |
438 'cc_perftests', | 438 'cc_perftests', |
439 ], | 439 ], |
440 'variables': { | 440 'variables': { |
441 'test_suite_name': 'cc_perftests', | 441 'test_suite_name': 'cc_perftests', |
442 }, | 442 }, |
443 'includes': [ '../build/apk_test.gypi' ], | 443 'includes': [ '../build/apk_test.gypi' ], |
444 }, | 444 }, |
445 ], | 445 ], |
446 } | 446 } |
447 ] | 447 ], |
| 448 ['test_isolation_mode != "noop"', { |
| 449 'targets': [ |
| 450 { |
| 451 'target_name': 'cc_unittests_run', |
| 452 'type': 'none', |
| 453 'dependencies': [ |
| 454 'cc_unittests', |
| 455 ], |
| 456 'includes': [ |
| 457 '../build/isolate.gypi', |
| 458 ], |
| 459 'sources': [ |
| 460 'cc_unittests.isolate', |
| 461 ], |
| 462 }, |
| 463 ], |
| 464 }], |
448 ], | 465 ], |
449 } | 466 } |
OLD | NEW |