| 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 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1049 }], | 1049 }], |
| 1050 ['test_isolation_mode != "noop"', { | 1050 ['test_isolation_mode != "noop"', { |
| 1051 'targets': [ | 1051 'targets': [ |
| 1052 { | 1052 { |
| 1053 'target_name': 'base_unittests_run', | 1053 'target_name': 'base_unittests_run', |
| 1054 'type': 'none', | 1054 'type': 'none', |
| 1055 'dependencies': [ | 1055 'dependencies': [ |
| 1056 'base_unittests', | 1056 'base_unittests', |
| 1057 ], | 1057 ], |
| 1058 'includes': [ | 1058 'includes': [ |
| 1059 '../build/isolate.gypi', |
| 1059 'base_unittests.isolate', | 1060 'base_unittests.isolate', |
| 1060 ], | 1061 ], |
| 1061 'actions': [ | 1062 'sources': [ |
| 1062 { | 1063 'base_unittests.isolate', |
| 1063 'action_name': 'isolate', | |
| 1064 'inputs': [ | |
| 1065 'base_unittests.isolate', | |
| 1066 '<@(isolate_dependency_tracked)', | |
| 1067 ], | |
| 1068 'outputs': [ | |
| 1069 '<(PRODUCT_DIR)/base_unittests.isolated', | |
| 1070 ], | |
| 1071 'action': [ | |
| 1072 'python', | |
| 1073 '../tools/swarm_client/isolate.py', | |
| 1074 '<(test_isolation_mode)', | |
| 1075 '--outdir', '<(test_isolation_outdir)', | |
| 1076 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)', | |
| 1077 '--variable', 'OS', '<(OS)', | |
| 1078 '--result', '<@(_outputs)', | |
| 1079 '--isolate', 'base_unittests.isolate', | |
| 1080 ], | |
| 1081 }, | |
| 1082 ], | 1064 ], |
| 1083 }, | 1065 }, |
| 1084 ], | 1066 ], |
| 1085 }], | 1067 }], |
| 1086 ], | 1068 ], |
| 1087 } | 1069 } |
| OLD | NEW |