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

Side by Side Diff: test/analyzer/subdir/subdir.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/gyptest-analyzer.new.py ('k') | test/analyzer/test.gyp » ('j') | 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 'trailing_dir_path': '../', 7 'trailing_dir_path': '../',
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'foo', 11 'target_name': 'foo',
12 'type': 'static_library', 12 'type': 'static_library',
13 'sources': [ 13 'sources': [
14 'subdir_source.c', 14 'subdir_source.c',
15 '<(trailing_dir_path)/parent_source.c', 15 '<(trailing_dir_path)/parent_source.c',
16 ], 16 ],
17 }, 17 },
18 {
19 'target_name': 'subdir2a',
20 'type': 'static_library',
21 'sources': [
22 'subdir2_source.c',
23 ],
24 'dependencies': [
25 'subdir2b',
26 ],
27 },
28 {
29 'target_name': 'subdir2b',
30 'type': 'static_library',
31 'sources': [
32 'subdir2b_source.c',
33 ],
34 },
18 ], 35 ],
19 } 36 }
OLDNEW
« no previous file with comments | « test/analyzer/gyptest-analyzer.new.py ('k') | test/analyzer/test.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698