Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?xml version="1.0" encoding="UTF-8"?> | |
| 2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/ PropertyList-1.0.dtd"> | |
| 3 <plist version="1.0"> | |
| 4 <dict> | |
| 5 <key>CFBundleDevelopmentRegion</key> | |
| 6 <string>en</string> | |
| 7 <key>CFBundleDisplayName</key> | |
| 8 <string>ActionExtension</string> | |
| 9 <key>CFBundleExecutable</key> | |
| 10 <string>${EXECUTABLE_NAME}</string> | |
| 11 <key>CFBundleIdentifier</key> | |
| 12 <string>com.google.chrome.ios.ExtensionContainer.ActionExtension</string > | |
|
justincohen
2014/07/07 16:21:42
We shouldn't use this bundle id for gyp tests. Wh
olivierrobin
2014/07/08 09:48:18
They use com.google.something, so I changed it to
| |
| 13 <key>CFBundleInfoDictionaryVersion</key> | |
| 14 <string>6.0</string> | |
| 15 <key>CFBundleName</key> | |
| 16 <string>${PRODUCT_NAME}</string> | |
| 17 <key>CFBundlePackageType</key> | |
| 18 <string>XPC!</string> | |
| 19 <key>CFBundleShortVersionString</key> | |
| 20 <string>1.0</string> | |
| 21 <key>CFBundleSignature</key> | |
| 22 <string>????</string> | |
| 23 <key>CFBundleVersion</key> | |
| 24 <string>1</string> | |
| 25 <key>NSExtension</key> | |
| 26 <dict> | |
| 27 <key>NSExtensionAttributes</key> | |
| 28 <dict> | |
| 29 <key>NSExtensionActivationRule</key> | |
| 30 <string>TRUEPREDICATE</string> | |
| 31 <key>NSExtensionPointName</key> | |
| 32 <string>com.apple.ui-services</string> | |
| 33 <key>NSExtensionPointVersion</key> | |
| 34 <string>1.0</string> | |
| 35 </dict> | |
| 36 <key>NSExtensionMainStoryboard</key> | |
| 37 <string>MainInterface</string> | |
| 38 <key>NSExtensionPointIdentifier</key> | |
| 39 <string>com.apple.ui-services</string> | |
| 40 </dict> | |
| 41 </dict> | |
| 42 </plist> | |
| OLD | NEW |