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

Side by Side Diff: test/analyzer/test4.gyp

Issue 481433003: Makes the analyzer output the set of targets needing a build (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: review feedback Created 6 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/analyzer/test3.gyp ('k') | test/analyzer/test5.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2014 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': 'a',
9 'type': 'executable',
10 'sources': [
11 'a.c',
12 ],
13 'dependencies': [
14 'b',
15 'c',
16 ],
17 },
18 {
19 'target_name': 'b',
20 'type': 'executable',
21 'sources': [
22 'b.c',
23 ],
24 'dependencies': [
25 'd',
26 ],
27 },
28 {
29 'target_name': 'c',
30 'type': 'executable',
31 'sources': [
32 'c.c',
33 ],
34 'dependencies': [
35 'b',
36 'd',
37 ],
38 },
39 {
40 'target_name': 'd',
41 'type': 'executable',
42 'sources': [
43 'd.c',
44 ],
45 },
46 {
47 'target_name': 'e',
48 'type': 'executable',
49 'dependencies': [
50 'test5.gyp:f',
51 ],
52 },
53 {
54 'target_name': 'h',
55 'type': 'none',
56 'dependencies': [
57 'i',
58 ],
59 'rules': [
60 {
61 'rule_name': 'rule',
62 'extension': 'pdf',
63 'inputs': [
64 'rule_input.c',
65 ],
66 'outputs': [
67 'rule_output.pdf',
68 ],
69 },
70 ],
71 },
72 {
73 'target_name': 'i',
74 'type': 'static_library',
75 'sources': [
76 'i.c',
77 ],
78 },
79 ],
80 }
OLDNEW
« no previous file with comments | « test/analyzer/test3.gyp ('k') | test/analyzer/test5.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698