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

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

Issue 420383002: Changes analyzer to search for targets (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: cleanup 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/subdir/subdir.gyp ('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
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 { 5 {
6 'variables': { 6 'variables': {
7 'test_variable%': 0, 7 'test_variable%': 0,
8 'variable_path': 'subdir', 8 'variable_path': 'subdir',
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'extension': 'pdf', 46 'extension': 'pdf',
47 'inputs': [ 47 'inputs': [
48 'rule_input.c', 48 'rule_input.c',
49 ], 49 ],
50 'outputs': [ 50 'outputs': [
51 'rule_output.pdf', 51 'rule_output.pdf',
52 ], 52 ],
53 }, 53 },
54 ], 54 ],
55 }, 55 },
56 {
57 'target_name': 'exe2',
58 'type': 'executable',
59 'sources': [
60 'exe2.c',
61 ],
62 },
63 {
64 'target_name': 'exe3',
65 'type': 'executable',
66 'dependencies': [
67 'subdir/subdir.gyp:foo',
68 'subdir/subdir.gyp:subdir2a',
69 ],
70 'sources': [
71 'exe3.c',
72 ],
73 },
74 {
75 'target_name': 'all',
76 'type': 'executable',
77 'dependencies': [
78 'exe',
79 'exe3',
80 ],
81 },
56 ], 82 ],
57 } 83 }
OLDNEW
« no previous file with comments | « test/analyzer/subdir/subdir.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698