| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 { | |
| 5 'variables': { | |
| 6 'command' : [ | |
| 7 'python', | |
| 8 'empty.py', | |
| 9 ], | |
| 10 'isolate_dependency_tracked': [ | |
| 11 # A single valid file so the command is valid and exits without an error. | |
| 12 'empty.py', | |
| 13 # File doesn't exist. | |
| 14 'A_file_that_does_not_exist', | |
| 15 ], | |
| 16 'isolate_dependency_untracked': [ | |
| 17 # Directory missing trailing slash. | |
| 18 'files1', | |
| 19 ], | |
| 20 'isolate_dependency_touched': [ | |
| 21 # File doesn't exist. | |
| 22 'A_file_that_does_not_exist_either', | |
| 23 ], | |
| 24 }, | |
| 25 } | |
| OLD | NEW |