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

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

Issue 1142323006: Makes analyzer always output static_libraries that have changed (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: comments Created 5 years, 6 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.py ('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
(Empty)
1 # Copyright 2015 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 # These gyp files create the following dependencies:
6 #
7 # test.gyp:
8 # #a -> b
9 # a.c
10 # #b
11 # b.c
12 # a and b are static libraries.
13
14 {
15 'targets': [
16 {
17 'target_name': 'a',
18 'type': 'static_library',
19 'sources': [
20 'a.c',
21 ],
22 'dependencies': [
23 'b',
24 ],
25 },
26 {
27 'target_name': 'b',
28 'type': 'static_library',
29 'sources': [
30 'b.c',
31 ],
32 },
33 ],
34 }
OLDNEW
« no previous file with comments | « test/analyzer/gyptest-analyzer.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698