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

Side by Side Diff: test/rules-rebuild/src/same_target.gyp

Issue 300016: Fix generators to make sure changes to rule inputs trigger correct rebuilds.... (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: add same_target.gyp Created 11 years, 1 month 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/rules-rebuild/src/prog2.in ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 'targets': [
3 {
4 'target_name': 'program',
5 'type': 'executable',
6 'msvs_cygwin_shell': 0,
7 'sources': [
8 'main.c',
9 'prog1.in',
10 'prog2.in',
11 ],
12 'rules': [
13 {
14 'rule_name': 'make_sources',
15 'extension': 'in',
16 'msvs_external_rule': 1,
17 'inputs': [
18 'make-sources.py',
19 ],
20 'outputs': [
21 '<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).c',
22 '<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).h',
23 ],
24 'action': [
25 'python', '<(_inputs)', '<(RULE_INPUT_NAME)', '<@(_outputs)',
26 ],
27 'process_outputs_as_sources': 1,
28 },
29 ],
30 },
31 ],
32 }
OLDNEW
« no previous file with comments | « test/rules-rebuild/src/prog2.in ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698