| 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 # This library should build cleanly with the extra warnings turned on | 7 # This library should build cleanly with the extra warnings turned on |
| 8 # for Chromium. | 8 # for Chromium. |
| 9 'chromium_code': 1, | 9 'chromium_code': 1, |
| 10 # The relative path of the cacheinvalidation proto files from | 10 # The relative path of the cacheinvalidation proto files from |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 'action_name': 'isolate', | 161 'action_name': 'isolate', |
| 162 'inputs': [ | 162 'inputs': [ |
| 163 'cacheinvalidation_unittests.isolate', | 163 'cacheinvalidation_unittests.isolate', |
| 164 '<@(isolate_dependency_tracked)', | 164 '<@(isolate_dependency_tracked)', |
| 165 ], | 165 ], |
| 166 'outputs': [ | 166 'outputs': [ |
| 167 '<(PRODUCT_DIR)/cacheinvalidation_unittests.results', | 167 '<(PRODUCT_DIR)/cacheinvalidation_unittests.results', |
| 168 ], | 168 ], |
| 169 'action': [ | 169 'action': [ |
| 170 'python', | 170 'python', |
| 171 '../../tools/isolate/isolate.py', | 171 '../../tools/swarm_client/isolate.py', |
| 172 '<(test_isolation_mode)', | 172 '<(test_isolation_mode)', |
| 173 '--outdir', '<(test_isolation_outdir)', | 173 '--outdir', '<(test_isolation_outdir)', |
| 174 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)', | 174 '--variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)', |
| 175 '--variable', 'OS', '<(OS)', | 175 '--variable', 'OS', '<(OS)', |
| 176 '--result', '<@(_outputs)', | 176 '--result', '<@(_outputs)', |
| 177 '--isolate', 'cacheinvalidation_unittests.isolate', | 177 '--isolate', 'cacheinvalidation_unittests.isolate', |
| 178 ], | 178 ], |
| 179 }, | 179 }, |
| 180 ], | 180 ], |
| 181 }, | 181 }, |
| 182 ], | 182 ], |
| 183 } | 183 } |
| OLD | NEW |