| OLD | NEW |
| 1 # Copyright (c) 2013 Google Inc. All rights reserved. | 1 # Copyright (c) 2013 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 'make_global_settings': [ | 5 'make_global_settings': [ |
| 6 ['CC', '/usr/bin/clang'], | 6 ['CC', '/usr/bin/clang'], |
| 7 ], | 7 ], |
| 8 'target_defaults': { | 8 'target_defaults': { |
| 9 'product_extension': 'bundle', | |
| 10 'mac_bundle_resources': [ | 9 'mac_bundle_resources': [ |
| 11 'TestApp/English.lproj/InfoPlist.strings', | 10 'TestApp/English.lproj/InfoPlist.strings', |
| 12 'TestApp/English.lproj/MainMenu.xib', | 11 'TestApp/English.lproj/MainMenu.xib', |
| 13 ], | 12 ], |
| 14 'link_settings': { | 13 'link_settings': { |
| 15 'libraries': [ | 14 'libraries': [ |
| 16 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 15 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 17 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', | 16 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 18 ], | 17 ], |
| 19 }, | 18 }, |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 'VALID_ARCHS': [ | 100 'VALID_ARCHS': [ |
| 102 'x86_64', | 101 'x86_64', |
| 103 'i386', | 102 'i386', |
| 104 'arm64', | 103 'arm64', |
| 105 'armv7', | 104 'armv7', |
| 106 ], | 105 ], |
| 107 } | 106 } |
| 108 }, | 107 }, |
| 109 ], | 108 ], |
| 110 } | 109 } |
| OLD | NEW |