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

Side by Side Diff: trunk/test/rules/src/subdir2/none.gyp

Issue 306051: Add AUTHORS and LICENSE files, and copyright headers to relevant source files... (Closed) Base URL: http://gyp.googlecode.com/svn/
Patch Set: '' Created 11 years, 2 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
OLDNEW
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
3 # found in the LICENSE file.
4
1 { 5 {
2 'targets': [ 6 'targets': [
3 { 7 {
4 'target_name': 'files', 8 'target_name': 'files',
5 'type': 'none', 9 'type': 'none',
6 'msvs_cygwin_shell': 0, 10 'msvs_cygwin_shell': 0,
7 'sources': [ 11 'sources': [
8 'file1.in', 12 'file1.in',
9 'file2.in', 13 'file2.in',
10 ], 14 ],
11 'rules': [ 15 'rules': [
12 { 16 {
13 'rule_name': 'copy_file', 17 'rule_name': 'copy_file',
14 'extension': 'in', 18 'extension': 'in',
15 'inputs': [ 19 'inputs': [
16 '../copy-file.py', 20 '../copy-file.py',
17 ], 21 ],
18 'outputs': [ 22 'outputs': [
19 '<(RULE_INPUT_ROOT).out', 23 '<(RULE_INPUT_ROOT).out',
20 ], 24 ],
21 'action': [ 25 'action': [
22 'python', '<(_inputs)', '<(RULE_INPUT_PATH)', '<@(_outputs)', 26 'python', '<(_inputs)', '<(RULE_INPUT_PATH)', '<@(_outputs)',
23 ], 27 ],
24 'process_outputs_as_sources': 1, 28 'process_outputs_as_sources': 1,
25 }, 29 },
26 ], 30 ],
27 }, 31 },
28 ], 32 ],
29 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698