• 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': 'mytarget',
8      'type': 'executable',
9      'sources': [ 'file.cc', ],
10      'xcode_settings': {
11        'SDKROOT': 'macosx%s',
12      },
13      'postbuilds': [
14        {
15          'postbuild_name': 'envtest',
16          'action': [ './test_shorthand.sh', ],
17        },
18      ],
19    },
20    {
21      'target_name': 'absolute',
22      'type': 'executable',
23      'sources': [ 'file.cc', ],
24      'xcode_settings': {
25        'SDKROOT': '<(sdk_path)',
26      },
27      'postbuilds': [
28        {
29          'postbuild_name': 'envtest',
30          'action': [ './test_shorthand.sh', ],
31        },
32      ],
33    },
34  ],
35}
36