| Index: test/ios/deployment-target/deployment-target.gyp
|
| diff --git a/test/ios/deployment-target/deployment-target.gyp b/test/ios/deployment-target/deployment-target.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..62e3ba44b4a3a753fca2eddafb0c283922aaeb30
|
| --- /dev/null
|
| +++ b/test/ios/deployment-target/deployment-target.gyp
|
| @@ -0,0 +1,50 @@
|
| +# Copyright (c) 2013 Google Inc. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +{
|
| + 'targets': [
|
| + {
|
| + 'target_name': 'iphoneos-version-min-4.3',
|
| + 'type': 'static_library',
|
| + 'sources': [ 'check-version-min.c', ],
|
| + 'defines': [ 'GYPTEST_IOS_VERSION_MIN=40300', ],
|
| + 'xcode_settings': {
|
| + 'ARCHS': [ 'armv7' ],
|
| + 'SDKROOT': 'iphoneos',
|
| + 'IPHONEOS_DEPLOYMENT_TARGET': '4.3',
|
| + },
|
| + },
|
| + {
|
| + 'target_name': 'iphoneos-version-min-5.0',
|
| + 'type': 'static_library',
|
| + 'sources': [ 'check-version-min.c', ],
|
| + 'defines': [ 'GYPTEST_IOS_VERSION_MIN=50000', ],
|
| + 'xcode_settings': {
|
| + 'ARCHS': [ 'armv7' ],
|
| + 'SDKROOT': 'iphoneos',
|
| + 'IPHONEOS_DEPLOYMENT_TARGET': '5.0',
|
| + },
|
| + },
|
| + {
|
| + 'target_name': 'iphonesimulator-version-min-4.3',
|
| + 'type': 'static_library',
|
| + 'sources': [ 'check-version-min.c', ],
|
| + 'defines': [ 'GYPTEST_IOS_VERSION_MIN=40300', ],
|
| + 'xcode_settings': {
|
| + 'SDKROOT': 'iphonesimulator',
|
| + 'IPHONEOS_DEPLOYMENT_TARGET': '4.3',
|
| + },
|
| + },
|
| + {
|
| + 'target_name': 'iphonesimulator-version-min-5.0',
|
| + 'type': 'static_library',
|
| + 'sources': [ 'check-version-min.c', ],
|
| + 'defines': [ 'GYPTEST_IOS_VERSION_MIN=50000', ],
|
| + 'xcode_settings': {
|
| + 'SDKROOT': 'iphonesimulator',
|
| + 'IPHONEOS_DEPLOYMENT_TARGET': '5.0',
|
| + },
|
| + },
|
| + ],
|
| +}
|
| +
|
|
|