blob: be0a075efc6f0c5b6274a426ab390d5aa58c6d87 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# 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',
9 'type': 'executable',
10 'mac_bundle': 1,
11 'sources': [ 'main.c', ],
12 'xcode_settings': {
13 'INFOPLIST_FILE': 'Info.plist',
14 },
15 'postbuilds': [
16 {
17 'postbuild_name': 'Postbuild that calls defaults',
18 'action': [
19 './postbuild-defaults.sh',
20 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}',
21 ],
22 },
23 ],
24 },
25 ],
26}