1 # Copyright (c) 2012 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': 'my_bundle', 8 'type': 'shared_library', 9 'mac_bundle': 1, 10 'sources': [ 'bundle.c' ], 11 'mac_bundle_resources': [ 12 'English.lproj/InfoPlist.strings', 13 ], 14 'xcode_settings': { 15 'INFOPLIST_FILE': 'Info.plist', 16 } 17 }, 18 { 19 'target_name': 'dependent_on_bundle', 20 'type': 'executable', 21 'sources': [ 'executable.c' ], 22 'dependencies': [ 23 'my_bundle', 24 ], 25 }, 26 ], 27 } 28 29