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

Side by Side Diff: test/same-target-name-different-directory/src/subdir1/subdir1.gyp

Issue 10447063: Fix make and ninja backends to sensibly handle duplicate target names in different directories (Closed) Base URL: http://git.chromium.org/external/gyp.git@master
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
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': 'target',
9 'type': 'none',
10 'actions': [
11 {
12 'action_name': 'action1',
13 'inputs': [],
14 'outputs': [
15 'action1.txt',
16 ],
17 'action': [
18 'python', '../touch.py', '<(_outputs)',
19 ],
20 # Allows the test to run without hermetic cygwin on windows.
21 'msvs_cygwin_shell': 0,
22 },
23 ],
24 },
25 {
26 'target_name': 'target_same_action_name',
27 'type': 'none',
28 'actions': [
29 {
30 'action_name': 'action',
31 'inputs': [],
32 'outputs': [
33 'action.txt',
34 ],
35 'action': [
36 'python', '../touch.py', '<(_outputs)',
37 ],
38 # Allows the test to run without hermetic cygwin on windows.
39 'msvs_cygwin_shell': 0,
40 },
41 ],
42 },
43 {
44 'target_name': 'target_same_rule_name',
45 'type': 'none',
46 'sources': [
47 '../touch.py'
48 ],
49 'rules': [
50 {
51 'rule_name': 'rule',
52 'extension': 'py',
53 'inputs': [],
54 'outputs': [
55 'rule.txt',
56 ],
57 'action': [
58 'python', '../touch.py', '<(_outputs)',
59 ],
60 # Allows the test to run without hermetic cygwin on windows.
61 'msvs_cygwin_shell': 0,
62 },
63 ],
64 },
65 ],
66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698