| 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 root directory for the proto files. | 10 # The root directory for the proto files. |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 '../../testing/gtest.gyp:gtest', | 208 '../../testing/gtest.gyp:gtest', |
| 209 'cacheinvalidation', | 209 'cacheinvalidation', |
| 210 ], | 210 ], |
| 211 }, | 211 }, |
| 212 { | 212 { |
| 213 'target_name': 'cacheinvalidation_unittests_run', | 213 'target_name': 'cacheinvalidation_unittests_run', |
| 214 'type': 'none', | 214 'type': 'none', |
| 215 'dependencies': [ | 215 'dependencies': [ |
| 216 'cacheinvalidation_unittests', | 216 'cacheinvalidation_unittests', |
| 217 ], | 217 ], |
| 218 'includes': [ |
| 219 'cacheinvalidation_unittests.isolate', |
| 220 ], |
| 218 'actions': [ | 221 'actions': [ |
| 219 { | 222 { |
| 220 'action_name': 'isolate', | 223 'action_name': 'isolate', |
| 221 'inputs': [ | 224 'inputs': [ |
| 222 '<(PRODUCT_DIR)/cacheinvalidation_unittests<(EXECUTABLE_SUFFIX)', | 225 'cacheinvalidation_unittests.isolate', |
| 226 '<@(isolate_dependency_tracked)', |
| 223 ], | 227 ], |
| 224 'outputs': [ | 228 'outputs': [ |
| 225 '<(PRODUCT_DIR)/cacheinvalidation_unittests.results', | 229 '<(PRODUCT_DIR)/cacheinvalidation_unittests.results', |
| 226 ], | 230 ], |
| 227 'action': [ | 231 'action': [ |
| 228 'python', | 232 'python', |
| 229 '<(DEPTH)/tools/isolate/isolate.py', | 233 '../../tools/isolate/isolate.py', |
| 230 '--mode=<(tests_run)', | 234 '--mode', '<(tests_run)', |
| 231 '--root', '<(DEPTH)', | 235 '--variable', 'DEPTH=<(DEPTH)', |
| 236 '--variable', 'PRODUCT_DIR=<(PRODUCT_DIR)', |
| 237 '--variable', 'OS=<(OS)', |
| 232 '--result', '<@(_outputs)', | 238 '--result', '<@(_outputs)', |
| 233 '<@(_inputs)', | 239 'cacheinvalidation_unittests.isolate', |
| 234 ], | 240 ], |
| 235 }, | 241 }, |
| 236 ], | 242 ], |
| 237 }, | 243 }, |
| 238 ], | 244 ], |
| 239 } | 245 } |
| OLD | NEW |