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

Side by Side Diff: test/same-rule-output-file-name/src/subdir1/subdir1.gyp

Issue 10538055: Fix make backend to correctly handle rules with output files of the same name (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 6 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2012 Google Inc. 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 {
6 'targets': [
7 {
8 'target_name': 'target1',
9 'type': 'none',
10 'sources': [
11 '../touch.py'
12 ],
13 'rules': [
14 {
15 'rule_name': 'rule1',
16 'extension': 'py',
17 'inputs': [],
18 'outputs': [
19 'rule.txt',
20 ],
21 'action': [
22 'python', '../touch.py', '<(_outputs)',
23 ],
24 # Allows the test to run without hermetic cygwin on windows.
25 'msvs_cygwin_shell': 0,
26 },
27 ],
28 },
29 ],
30 }
OLDNEW
« no previous file with comments | « test/same-rule-output-file-name/gyptest-all.py ('k') | test/same-rule-output-file-name/src/subdir2/subdir2.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698