1 # Copyright 2013 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 { 6 'targets': [ 7 { 8 'target_name': 'myapp', 9 'type': 'executable', 10 'mac_bundle': 1, 11 'sources': [ 'file.cc', ], 12 'xcode_settings': { 13 'BUNDLE_DISPLAY_NAME': '\011', 14 }, 15 'postbuilds': [ 16 { 17 'postbuild_name': 'envtest', 18 'action': [ './test_bundle_display_name.sh', ], 19 }, 20 ], 21 }, 22 ], 23 } 24