OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2012 Google Inc. All rights reserved. | |
Nico
2013/01/10 21:34:57
nit: 2013
cwolfe
2013/01/10 21:49:47
Done.
| |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 { | |
5 'targets': [ | |
6 { | |
7 'target_name': 'shared', | |
8 'type': 'shared_library', | |
9 'sources': [ 'file.c' ], | |
10 }, | |
11 { | |
12 'target_name': 'static', | |
13 'type': 'static_library', | |
14 'sources': [ 'file.c' ], | |
15 }, | |
16 { | |
17 'target_name': 'shared_executable', | |
18 'type': 'executable', | |
19 'sources': [ 'main.c' ], | |
20 'dependencies': [ | |
21 'shared' | |
Nico
2013/01/10 21:34:57
nit: i'd put a trailing , here
cwolfe
2013/01/10 21:49:47
Done.
| |
22 ] | |
23 }, | |
24 { | |
25 'target_name': 'static_executable', | |
26 'type': 'executable', | |
27 'sources': [ 'main.c' ], | |
28 'dependencies': [ | |
29 'static' | |
Nico
2013/01/10 21:34:57
here too
cwolfe
2013/01/10 21:49:47
Done.
| |
30 ] | |
31 }, | |
32 ], | |
33 } | |
OLD | NEW |