1 # Copyright (c) 2011 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': 'test_app', 8 'product_name': 'Test App Gyp', 9 'type': 'executable', 10 'mac_bundle': 1, 11 'sources': [ 12 'TestApp/main.m', 13 'TestApp/TestApp_Prefix.pch', 14 'TestApp/TestAppAppDelegate.h', 15 'TestApp/TestAppAppDelegate.m', 16 ], 17 'mac_bundle_resources': [ 18 'TestApp/English.lproj/InfoPlist-error.strings', 19 'TestApp/English.lproj/MainMenu.xib', 20 ], 21 'link_settings': { 22 'libraries': [ 23 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', 24 ], 25 }, 26 'xcode_settings': { 27 'INFOPLIST_FILE': 'TestApp/TestApp-Info.plist', 28 }, 29 }, 30 ], 31 } 32