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..35760b2b5081fb62f30a40a1ba0bbe6b7b8f2dc3 |
--- /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': 'executable', |
+ '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': 'executable', |
+ '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': 'executable', |
+ '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': 'executable', |
+ 'sources': [ 'check-version-min.c', ], |
+ 'defines': [ 'GYPTEST_IOS_VERSION_MIN=50000', ], |
+ 'xcode_settings': { |
+ 'SDKROOT': 'iphonesimulator', |
+ 'IPHONEOS_DEPLOYMENT_TARGET': '5.0', |
+ }, |
+ }, |
+ ], |
+} |
+ |