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': 'test_app', 8 'product_name': 'Test App Gyp', 9 'type': 'executable', 10 'mac_bundle': 1, 11 'sources': [ 12 'main.c', 13 ], 14 'mac_bundle_resources': [ 15 'resource.sb', 16 ], 17 'xcode_settings': { 18 'INFOPLIST_FILE': 'Info.plist', 19 'ORDER_FILE': 'app.order', 20 'GCC_PREFIX_HEADER': 'header.h', 21 'GCC_PRECOMPILE_PREFIX_HEADER': 'YES', 22 }, 23 }, 24 ], 25 } 26