Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: test/rules-dirname/src/subdir/input-rule-dirname.gyp

Issue 9451001: Don't allow empty string as first argument of action. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pylib/gyp/input.py ('k') | test/rules/src/external/external.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 Google Inc. All rights reserved. 1 # Copyright (c) 2011 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'print_rule_input_path', 8 'target_name': 'print_rule_input_path',
9 'type': 'none', 9 'type': 'none',
10 'msvs_cygwin_shell': 0, 10 'msvs_cygwin_shell': 0,
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 'action_name': 'setup_mount', 75 'action_name': 'setup_mount',
76 'msvs_cygwin_shell': 0, 76 'msvs_cygwin_shell': 0,
77 'inputs': [ 77 'inputs': [
78 '../../../../../../<(DEPTH)/third_party/cygwin/setup_mount.bat', 78 '../../../../../../<(DEPTH)/third_party/cygwin/setup_mount.bat',
79 ], 79 ],
80 # Visual Studio requires an output file, or else the 80 # Visual Studio requires an output file, or else the
81 # custom build step won't run. 81 # custom build step won't run.
82 'outputs': [ 82 'outputs': [
83 '<(INTERMEDIATE_DIR)/_always_run_setup_mount.marker', 83 '<(INTERMEDIATE_DIR)/_always_run_setup_mount.marker',
84 ], 84 ],
85 'action': ['', '<@(_inputs)'], 85 'action': ['<@(_inputs)'],
86 }, 86 },
87 ], 87 ],
88 }, 88 },
89 ], 89 ],
90 }], 90 }],
91 ], 91 ],
92 } 92 }
OLDNEW
« no previous file with comments | « pylib/gyp/input.py ('k') | test/rules/src/external/external.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698