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

Side by Side Diff: test/actions-multiple/src/actions.gyp

Issue 6250068: Fixing msvs handling of actions which have overlapping inputs.... (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: '' Created 9 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2009 Google Inc. All rights reserved.
jeanluc1 2011/02/01 02:00:08 2011 please.
bradn 2011/02/01 03:02:51 Done.
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': 'multiple_action_target',
9 'type': 'none',
10 'actions': [
11 {
12 'action_name': 'action1',
13 'inputs': [
14 'input.txt',
15 ],
16 'outputs': [
17 'output1.txt',
18 ],
19 'action': [
20 'python', 'copy.py', '<(_inputs)', '<(_outputs)',
21 ],
22 # Allows the test to run without hermetic cygwin on windows.
23 'msvs_cygwin_shell': 0,
24 },
25 {
26 'action_name': 'action2',
27 'inputs': [
28 'input.txt',
29 ],
30 'outputs': [
31 'output2.txt',
32 ],
33 'action': [
34 'python', 'copy.py', '<(_inputs)', '<(_outputs)',
35 ],
36 # Allows the test to run without hermetic cygwin on windows.
37 'msvs_cygwin_shell': 0,
38 },
39 {
40 'action_name': 'action3',
41 'inputs': [
42 'input.txt',
43 ],
44 'outputs': [
45 'output3.txt',
46 ],
47 'action': [
48 'python', 'copy.py', '<(_inputs)', '<(_outputs)',
49 ],
50 # Allows the test to run without hermetic cygwin on windows.
51 'msvs_cygwin_shell': 0,
52 },
53 ],
54 },
55 ],
56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698