| OLD | NEW |
| 1 # Copyright (c) 2009 Google Inc. All rights reserved. | 1 # Copyright (c) 2009 Google Inc. 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 # Test that the case where there are no inputs (other than the | 5 # Test that the case where there are no inputs (other than the |
| 6 # file the rule applies to). | 6 # file the rule applies to). |
| 7 { | 7 { |
| 8 'target_defaults': { | 8 'target_defaults': { |
| 9 'msvs_cygwin_dirs': ['../../../../../../<(DEPTH)/third_party/cygwin'], | 9 'msvs_cygwin_dirs': ['../../../../../../<(DEPTH)/third_party/cygwin'], |
| 10 }, | 10 }, |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 'action_name': 'setup_mount', | 49 'action_name': 'setup_mount', |
| 50 'msvs_cygwin_shell': 0, | 50 'msvs_cygwin_shell': 0, |
| 51 'inputs': [ | 51 'inputs': [ |
| 52 '../../../../../../<(DEPTH)/third_party/cygwin/setup_mount.bat', | 52 '../../../../../../<(DEPTH)/third_party/cygwin/setup_mount.bat', |
| 53 ], | 53 ], |
| 54 # Visual Studio requires an output file, or else the | 54 # Visual Studio requires an output file, or else the |
| 55 # custom build step won't run. | 55 # custom build step won't run. |
| 56 'outputs': [ | 56 'outputs': [ |
| 57 '<(INTERMEDIATE_DIR)/_always_run_setup_mount.marker', | 57 '<(INTERMEDIATE_DIR)/_always_run_setup_mount.marker', |
| 58 ], | 58 ], |
| 59 'action': ['', '<@(_inputs)'], | 59 'action': ['<@(_inputs)'], |
| 60 }, | 60 }, |
| 61 ], | 61 ], |
| 62 }, | 62 }, |
| 63 ], | 63 ], |
| 64 }], | 64 }], |
| 65 ], | 65 ], |
| 66 } | 66 } |
| OLD | NEW |