OLD | NEW |
1 # Copyright (c) 2013 Google Inc. All rights reserved. | 1 # Copyright (c) 2013 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 'targets': [ | 5 'targets': [ |
6 { | 6 { |
7 'target_name': 'shared', | 7 'target_name': 'shared', |
8 'type': 'shared_library', | 8 'type': 'shared_library', |
9 'sources': [ 'file.c' ], | 9 'sources': [ 'file.c' ], |
10 }, | 10 }, |
(...skipping 27 matching lines...) Expand all Loading... |
38 { | 38 { |
39 'target_name': 'static_executable', | 39 'target_name': 'static_executable', |
40 'type': 'executable', | 40 'type': 'executable', |
41 'sources': [ 'main.c' ], | 41 'sources': [ 'main.c' ], |
42 'dependencies': [ | 42 'dependencies': [ |
43 'static', | 43 'static', |
44 ] | 44 ] |
45 }, | 45 }, |
46 ], | 46 ], |
47 } | 47 } |
OLD | NEW |