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

Side by Side Diff: test/rules/src/external/external.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 | « test/rules-dirname/src/subdir/input-rule-dirname.gyp ('k') | no next file » | 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) 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
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 }
OLDNEW
« no previous file with comments | « test/rules-dirname/src/subdir/input-rule-dirname.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698