| 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 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 'target_name': 'lib1', | |
| 9 'type': 'static_library', | |
| 10 'sources': [ 'lib1.cc' ], | |
| 11 'dependencies': [ 'lib_indirect' ], | |
| 12 }, | |
| 13 { | |
| 14 'target_name': 'lib2', | |
| 15 'type': 'static_library', | |
| 16 'sources': [ 'lib2.cc' ], | |
| 17 'dependencies': [ 'lib_indirect' ], | |
| 18 }, | |
| 19 { | |
| 20 'target_name': 'lib3', | |
| 21 'type': 'static_library', | |
| 22 'sources': [ 'lib3.cc' ], | |
| 23 }, | |
| 24 { | |
| 25 'target_name': 'lib_indirect', | |
| 26 'type': 'static_library', | |
| 27 'sources': [ 'lib_indirect.cc' ], | |
| 28 }, | |
| 29 ], | |
| 30 } | |
| OLD | NEW |