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': 'mytarget', 8 'type': 'executable', 9 'mac_bundle': 1, 10 'sources': [ 'file.c', ], 11 'xcode_settings': { 12 'INFOPLIST_FILE': 'Info.plist', 13 }, 14 }, 15 { 16 'target_name': 'myothertarget', 17 'type': 'executable', 18 'mac_bundle': 1, 19 'sources': [ 'file.c', ], 20 'xcode_settings': { 21 'INFOPLIST_FILE': 'Other-Info.plist', 22 }, 23 }, 24 { 25 'target_name': 'thirdtarget', 26 'type': 'executable', 27 'mac_bundle': 1, 28 'sources': [ 'file.c', ], 29 'xcode_settings': { 30 'INFOPLIST_FILE': 'Third-Info.plist', 31 }, 32 }, 33 ], 34 } 35