michael@0: # Copyright (c) 2012 Google Inc. All rights reserved. michael@0: # Use of this source code is governed by a BSD-style license that can be michael@0: # found in the LICENSE file. michael@0: michael@0: { michael@0: 'targets': [ michael@0: { michael@0: 'target_name': 'target1', michael@0: 'type': 'none', michael@0: 'sources': [ michael@0: '../touch.py' michael@0: ], michael@0: 'rules': [ michael@0: { michael@0: 'rule_name': 'rule1', michael@0: 'extension': 'py', michael@0: 'inputs': [], michael@0: 'outputs': [ michael@0: 'rule.txt', michael@0: ], michael@0: 'action': [ michael@0: 'python', '../touch.py', '<(_outputs)', michael@0: ], michael@0: # Allows the test to run without hermetic cygwin on windows. michael@0: 'msvs_cygwin_shell': 0, michael@0: }, michael@0: ], michael@0: }, michael@0: ], michael@0: }