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

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

Issue 1431343002: Changes semantics of analyzer (Closed) Base URL: https://chromium.googlesource.com/external/gyp@master
Patch Set: compile_targets -> additional_compile_targets Created 5 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
OLDNEW
1 # Copyright (c) 2014 Google Inc. All rights reserved. 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 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 # These gyp files create the following dependencies: 5 # These gyp files create the following dependencies:
6 # 6 #
7 # test.gyp: 7 # test.gyp:
8 # #exe -> subdir/subdir.gyp#foo, subdir/subdir2/subdir2.gyp#subdir2 8 # #exe -> subdir/subdir.gyp#foo, subdir/subdir2/subdir2.gyp#subdir2
9 # foo.c 9 # foo.c
10 # subdir/subdir_source2.c 10 # subdir/subdir_source2.c
11 # conditional_source.c (if test_variable==1) 11 # conditional_source.c (if test_variable==1)
12 # action_input.c 12 # action_input.c
13 # action_output.c 13 # action_output.c
14 # rule_input.c 14 # rule_input.c
15 # rule_output.pdf 15 # rule_output.pdf
16 # #exe2 16 # #exe2
17 # exe2.c 17 # exe2.c
18 # #exe3 -> subdir/subdir.gyp#foo, subdir/subdir.gyp#subdir2a 18 # #exe3 -> subdir/subdir.gyp#foo, subdir/subdir.gyp#subdir2a
19 # exe3.c 19 # exe3.c
20 # #all (type none) -> exe, exe3 20 # #allx (type none) -> exe, exe3
21 # 21 #
22 # subdir/subdir.gyp 22 # subdir/subdir.gyp
23 # #foo 23 # #foo
24 # subdir/subdir_source.c 24 # subdir/subdir_source.c
25 # parent_source.c 25 # parent_source.c
26 # #subdir2a -> subdir2b 26 # #subdir2a -> subdir2b
27 # subdir/subdir2_source.c 27 # subdir/subdir2_source.c
28 # #subdir2b 28 # #subdir2b
29 # subdir/subdir2b_source.c 29 # subdir/subdir2b_source.c
30 # 30 #
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 'type': 'executable', 96 'type': 'executable',
97 'dependencies': [ 97 'dependencies': [
98 'subdir/subdir.gyp:foo', 98 'subdir/subdir.gyp:foo',
99 'subdir/subdir.gyp:subdir2a', 99 'subdir/subdir.gyp:subdir2a',
100 ], 100 ],
101 'sources': [ 101 'sources': [
102 'exe3.c', 102 'exe3.c',
103 ], 103 ],
104 }, 104 },
105 { 105 {
106 'target_name': 'all', 106 'target_name': 'allx',
Dirk Pranke 2015/11/12 00:37:20 this changes to 'allx' to avoid the special handli
sky 2015/11/12 00:47:23 Exactly.
107 'type': 'none', 107 'type': 'none',
108 'dependencies': [ 108 'dependencies': [
109 'exe', 109 'exe',
110 'exe3', 110 'exe3',
111 ], 111 ],
112 }, 112 },
113 ], 113 ],
114 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698