From 5d61cbcf182ed58bed51c4a40686af764c39e011 Mon Sep 17 00:00:00 2001 From: Googler Date: Wed, 9 Mar 2016 03:37:08 +0000 Subject: Adds a missing default Info.plist in bazel, required by the ios_test rule. -- MOS_MIGRATED_REVID=116725042 --- tools/objc/BUILD | 5 ++++ tools/objc/XCTest-Info.plist | 54 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 tools/objc/XCTest-Info.plist (limited to 'tools/objc') diff --git a/tools/objc/BUILD b/tools/objc/BUILD index 9391a4d119..a2690e8a60 100644 --- a/tools/objc/BUILD +++ b/tools/objc/BUILD @@ -100,6 +100,11 @@ sh_binary( srcs = [":xcrunwrapper.sh"], ) +filegroup( + name = "xctest_infoplist", + srcs = ["XCTest-Info.plist"], +) + sh_binary( name = "environment_plist", srcs = [":environment_plist.sh"], diff --git a/tools/objc/XCTest-Info.plist b/tools/objc/XCTest-Info.plist new file mode 100644 index 0000000000..59fae03801 --- /dev/null +++ b/tools/objc/XCTest-Info.plist @@ -0,0 +1,54 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleDisplayName + ${PRODUCT_NAME} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFiles + + CFBundleInfoDictionaryVersion + 6.0 + UIFileSharingEnabled + + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0.0 + LSRequiresIPhoneOS + + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIRequiresFullScreen + + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + + + \ No newline at end of file -- cgit v1.2.3