OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 { |
| 5 'targets': [ |
| 6 { |
| 7 'target_name': 'iphoneos-version-min-4.3', |
| 8 'type': 'executable', |
| 9 'sources': [ 'check-version-min.c', ], |
| 10 'defines': [ 'GYPTEST_IOS_VERSION_MIN=40300', ], |
| 11 'xcode_settings': { |
| 12 'ARCHS': [ 'armv7' ], |
| 13 'SDKROOT': 'iphoneos', |
| 14 'IPHONEOS_DEPLOYMENT_TARGET': '4.3', |
| 15 }, |
| 16 }, |
| 17 { |
| 18 'target_name': 'iphoneos-version-min-5.0', |
| 19 'type': 'executable', |
| 20 'sources': [ 'check-version-min.c', ], |
| 21 'defines': [ 'GYPTEST_IOS_VERSION_MIN=50000', ], |
| 22 'xcode_settings': { |
| 23 'ARCHS': [ 'armv7' ], |
| 24 'SDKROOT': 'iphoneos', |
| 25 'IPHONEOS_DEPLOYMENT_TARGET': '5.0', |
| 26 }, |
| 27 }, |
| 28 { |
| 29 'target_name': 'iphonesimulator-version-min-4.3', |
| 30 'type': 'executable', |
| 31 'sources': [ 'check-version-min.c', ], |
| 32 'defines': [ 'GYPTEST_IOS_VERSION_MIN=40300', ], |
| 33 'xcode_settings': { |
| 34 'SDKROOT': 'iphonesimulator', |
| 35 'IPHONEOS_DEPLOYMENT_TARGET': '4.3', |
| 36 }, |
| 37 }, |
| 38 { |
| 39 'target_name': 'iphonesimulator-version-min-5.0', |
| 40 'type': 'executable', |
| 41 'sources': [ 'check-version-min.c', ], |
| 42 'defines': [ 'GYPTEST_IOS_VERSION_MIN=50000', ], |
| 43 'xcode_settings': { |
| 44 'SDKROOT': 'iphonesimulator', |
| 45 'IPHONEOS_DEPLOYMENT_TARGET': '5.0', |
| 46 }, |
| 47 }, |
| 48 ], |
| 49 } |
| 50 |
OLD | NEW |