Home | History | Annotate | Download | only in postbuild-defaults
      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       },
     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 }
     27