• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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',
9      'type': 'executable',
10      'mac_bundle': 1,
11      'sources': [ 'main.c', ],
12      'xcode_settings': {
13        'INFOPLIST_FILE': 'Info.plist',
14        'MY_VAR': 'some expansion',
15        'OTHER_CFLAGS': [
16          # Just some (more than one) random flags.
17          '-fstack-protector-all',
18          '-fno-strict-aliasing',
19          '-DS="A Space"',  # Would normally be in 'defines'
20        ],
21      },
22      'include_dirs': [
23        '$(SDKROOT)/usr/include/libxml2',
24      ],
25    },
26  ],
27}
28