OLD | NEW |
(Empty) | |
| 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 |
| 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', |
| 22 ] |
| 23 }, |
| 24 { |
| 25 'target_name': 'static_executable', |
| 26 'type': 'executable', |
| 27 'sources': [ 'main.c' ], |
| 28 'dependencies': [ |
| 29 'static', |
| 30 ] |
| 31 }, |
| 32 ], |
| 33 } |
OLD | NEW |