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', 27 'TestApp/English.lproj/MainMenu.xib', 28 ], 29 'link_settings': { 30 'libraries': [ 31 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', 32 ], 33 }, 34 'xcode_settings': { 35 'INFOPLIST_FILE': 'TestApp/TestApp-Info.plist', 36 }, 37 }, 38 ], 39 } 40