Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011 Google Inc. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'test_app', | 10 'target_name': 'test_app', |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 23 'libraries': [ | 23 'libraries': [ |
| 24 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 24 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 25 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', | 25 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 26 ], | 26 ], |
| 27 }, | 27 }, |
| 28 'xcode_settings': { | 28 'xcode_settings': { |
| 29 'OTHER_CFLAGS': [ | 29 'OTHER_CFLAGS': [ |
| 30 '-fobjc-abi-version=2', | 30 '-fobjc-abi-version=2', |
| 31 ], | 31 ], |
| 32 'SDKROOT': 'iphonesimulator', # -isysroot | 32 'SDKROOT': 'iphonesimulator', # -isysroot |
| 33 'TARGETED_DEVICE_FAMILY': '1,2', | |
|
Nico
2013/10/13 02:00:30
Having another target without TARGETED_DEVICE_FAMI
| |
| 33 'INFOPLIST_FILE': 'TestApp/TestApp-Info.plist', | 34 'INFOPLIST_FILE': 'TestApp/TestApp-Info.plist', |
| 34 'IPHONEOS_DEPLOYMENT_TARGET': '4.2', | 35 'IPHONEOS_DEPLOYMENT_TARGET': '4.2', |
| 36 'CONFIGURATION_BUILD_DIR':'build/Default', | |
| 35 }, | 37 }, |
| 36 }, | 38 }, |
| 37 ], | 39 ], |
| 38 } | 40 } |
| OLD | NEW |