| 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 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 'base_unittests.isolate', | 478 'base_unittests.isolate', |
| 479 '<@(isolate_dependency_tracked)', | 479 '<@(isolate_dependency_tracked)', |
| 480 ], | 480 ], |
| 481 'outputs': [ | 481 'outputs': [ |
| 482 '<(PRODUCT_DIR)/base_unittests.results', | 482 '<(PRODUCT_DIR)/base_unittests.results', |
| 483 ], | 483 ], |
| 484 'action': [ | 484 'action': [ |
| 485 'python', | 485 'python', |
| 486 '../tools/isolate/isolate.py', | 486 '../tools/isolate/isolate.py', |
| 487 '--mode', '<(tests_run)', | 487 '--mode', '<(tests_run)', |
| 488 '--variable', 'PRODUCT_DIR=<(PRODUCT_DIR)', | 488 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)', |
| 489 '--variable', 'OS=<(OS)', | 489 '--variable', 'OS', '<(OS)', |
| 490 '--result', '<@(_outputs)', | 490 '--result', '<@(_outputs)', |
| 491 'base_unittests.isolate', | 491 'base_unittests.isolate', |
| 492 ], | 492 ], |
| 493 }, | 493 }, |
| 494 ], | 494 ], |
| 495 }, | 495 }, |
| 496 { | 496 { |
| 497 'target_name': 'test_support_perf', | 497 'target_name': 'test_support_perf', |
| 498 'type': 'static_library', | 498 'type': 'static_library', |
| 499 'dependencies': [ | 499 'dependencies': [ |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 '--ant-args', | 676 '--ant-args', |
| 677 '-DPRODUCT_DIR=<(PRODUCT_DIR)', | 677 '-DPRODUCT_DIR=<(PRODUCT_DIR)', |
| 678 '--ant-compile' | 678 '--ant-compile' |
| 679 ], | 679 ], |
| 680 }, | 680 }, |
| 681 ] | 681 ] |
| 682 }], | 682 }], |
| 683 }], | 683 }], |
| 684 ], | 684 ], |
| 685 } | 685 } |
| OLD | NEW |