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