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

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: 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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698