summaryrefslogtreecommitdiffstats
path: root/testing/gtest_ios
diff options
context:
space:
mode:
authorstuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-09 14:41:14 +0000
committerstuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-09 14:41:14 +0000
commit17f7c434cec5d070b2f91720815c3341d5492f45 (patch)
tree2ddb1e48eccd44c7af5d5248c274e8b3c27db413 /testing/gtest_ios
parentd35cb97ec47e8dac1416a87a930703b8bcc50800 (diff)
downloadchromium_src-17f7c434cec5d070b2f91720815c3341d5492f45.zip
chromium_src-17f7c434cec5d070b2f91720815c3341d5492f45.tar.gz
chromium_src-17f7c434cec5d070b2f91720815c3341d5492f45.tar.bz2
Make all gtest targets into bundles on iOS
The raw 'executable' type maps to the .tool Apple product-type, which doesn't exist on iOS. Make each unit test a bundle instead. BUG=None TEST=None Review URL: https://chromiumcodereview.appspot.com/10704121 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145671 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'testing/gtest_ios')
-rw-r--r--testing/gtest_ios/unittest-Info.plist32
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/gtest_ios/unittest-Info.plist b/testing/gtest_ios/unittest-Info.plist
new file mode 100644
index 0000000..fc21034
--- /dev/null
+++ b/testing/gtest_ios/unittest-Info.plist
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>CFBundleDevelopmentRegion</key>
+ <string>English</string>
+ <key>CFBundleDisplayName</key>
+ <string>${PRODUCT_NAME}</string>
+ <key>CFBundleExecutable</key>
+ <string>${EXECUTABLE_NAME}</string>
+ <key>CFBundleIdentifier</key>
+ <string>com.google.gtest.${BUNDLE_ID_TEST_NAME}</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleName</key>
+ <string>${PRODUCT_NAME}</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleVersion</key>
+ <string>1.0</string>
+ <key>LSRequiresIPhoneOS</key>
+ <true/>
+ <key>UISupportedInterfaceOrientation</key>
+ <array>
+ <string>UIInterfaceOrientationPortrait</string>
+ <string>UIInterfaceOrientationLandscapeLeft</string>
+ <string>UIInterfaceOrientationLandscapeRight</string>
+ </array>
+</dict>
+</plist>