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': 'dep_framework', 8 'product_name': 'Dependency Framework', 9 'type': 'shared_library', 10 'mac_bundle': 1, 11 'sources': [ 'empty.c', ], 12 }, 13 { 14 'target_name': 'test_app', 15 'product_name': 'Test App Gyp', 16 'type': 'executable', 17 'mac_bundle': 1, 18 'dependencies': [ 'dep_framework', ], 19 'sources': [ 20 'TestApp/main.m', 21 'TestApp/TestApp_Prefix.pch', 22 'TestApp/TestAppAppDelegate.h', 23 'TestApp/TestAppAppDelegate.m', 24 ], 25 'mac_bundle_resources': [ 26 'TestApp/English.lproj/InfoPlist.strings', # UTF-8 27 'TestApp/English.lproj/utf-16be.strings', 28 'TestApp/English.lproj/utf-16le.strings', 29 'TestApp/English.lproj/MainMenu.xib', 30 ], 31 'link_settings': { 32 'libraries': [ 33 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', 34 ], 35 }, 36 'xcode_settings': { 37 'INFOPLIST_FILE': 'TestApp/TestApp-Info.plist', 38 }, 39 }, 40 ], 41 } 42