Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 Google Inc. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 { | 4 { |
| 5 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 'target_name': 'test_app', | 7 'target_name': 'myapp', |
| 8 'product_name': 'Test', | |
| 9 'type': 'executable', | 8 'type': 'executable', |
| 10 'mac_bundle': 1, | 9 'mac_bundle': 1, |
| 11 'sources': [ 'main.c', ], | 10 'sources': [ 'file.cc', ], |
| 12 'xcode_settings': { | 11 'xcode_settings': { |
| 13 'INFOPLIST_FILE': 'Info.plist', | 12 'BUNDLE_DISPLAY_NAME': 'α', |
| 14 }, | 13 }, |
|
Mark Mentovai
2013/09/12 21:32:18
Maybe add a couple more funny characters here, lik
kbongort
2013/09/12 22:41:40
I added a check for the tab character.
| |
| 15 'postbuilds': [ | 14 'postbuilds': [ |
| 16 { | 15 { |
| 17 'postbuild_name': 'Postbuild that calls defaults', | 16 'postbuild_name': 'envtest', |
| 18 'action': [ | 17 'action': [ './test_bundle_display_name.sh', ], |
| 19 './postbuild-defaults.sh', | |
| 20 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}', | |
| 21 ], | |
| 22 }, | 18 }, |
| 23 ], | 19 ], |
| 24 }, | 20 }, |
| 25 ], | 21 ], |
| 26 } | 22 } |
| OLD | NEW |