1 # Copyright (c) 2009 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': 'program', 9 'type': 'executable', 10 'dependencies': [ 11 'lib1' 12 ], 13 'sources': [ 14 'program.cpp', 15 ], 16 }, 17 { 18 'target_name': 'lib1', 19 'type': 'static_library', 20 'sources': [ 21 'lib1.hpp', 22 'lib1.cpp', 23 ], 24 }, 25 ], 26 } 27