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 Assets Catalog 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        'TestApp/Images.xcassets',
31      ],
32      'link_settings': {
33        'libraries': [
34          '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
35        ],
36      },
37      'xcode_settings': {
38        'INFOPLIST_FILE': 'TestApp/TestApp-Info.plist',
39        'MACOSX_DEPLOYMENT_TARGET': '10.9',
40      },
41    },
42  ],
43}
44