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

Side by Side Diff: test/intermediate_dir/src/test.gyp

Issue 10831183: Fixes an issue where OutputDirectory and IntermediateDirectory were being (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 4 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/intermediate_dir/gyptest-intermediate-dir.py ('k') | test/intermediate_dir/src/test2.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': 'target1', 8 'target_name': 'target1',
9 'type': 'none', 9 'type': 'none',
10 'actions': [ 10 'actions': [
11 { 11 {
12 'action_name': 'intermediate', 12 'action_name': 'intermediate',
13 'inputs': [], 13 'inputs': [],
14 'outputs': [ 14 'outputs': [
15 '<(INTERMEDIATE_DIR)/intermediate_out.txt', 15 '<(INTERMEDIATE_DIR)intermediate_out.txt',
scottmg 2012/08/08 17:05:39 These are not required removals, right? There'd ju
16 'outfile.txt', 16 'outfile.txt',
17 ], 17 ],
18 'action': [ 18 'action': [
19 'python', 'script.py', 'target1', '<(_outputs)', 19 'python', 'script.py', 'target1', '<(_outputs)',
20 ], 20 ],
21 # Allows the test to run without hermetic cygwin on windows. 21 # Allows the test to run without hermetic cygwin on windows.
22 'msvs_cygwin_shell': 0, 22 'msvs_cygwin_shell': 0,
23 }, 23 },
24 { 24 {
25 'action_name': 'shared_intermediate', 25 'action_name': 'shared_intermediate',
26 'inputs': [ 26 'inputs': [
27 'shared_infile.txt', 27 'shared_infile.txt',
28 ], 28 ],
29 'outputs': [ 29 'outputs': [
30 '<(SHARED_INTERMEDIATE_DIR)/intermediate_out.txt', 30 '<(SHARED_INTERMEDIATE_DIR)intermediate_out.txt',
31 'shared_outfile.txt', 31 'shared_outfile.txt',
32 ], 32 ],
33 'action': [ 33 'action': [
34 'python', 'script.py', 'shared_target1', '<(_outputs)', 34 'python', 'script.py', 'shared_target1', '<(_outputs)',
35 ], 35 ],
36 # Allows the test to run without hermetic cygwin on windows. 36 # Allows the test to run without hermetic cygwin on windows.
37 'msvs_cygwin_shell': 0, 37 'msvs_cygwin_shell': 0,
38 }, 38 },
39 ], 39 ],
40 }, 40 },
41 ], 41 ],
42 } 42 }
OLDNEW
« no previous file with comments | « test/intermediate_dir/gyptest-intermediate-dir.py ('k') | test/intermediate_dir/src/test2.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698