Home | History | Annotate | Download | only in launcherXPCService
      1 #if RC_XBS && !RC_BUILDIT
      2 #define AND_APPLE_CODE_SIGNED and ${IS_APPLE_CODE_SIGNED}
      3 #else 
      4 #define AND_APPLE_CODE_SIGNED
      5 #endif
      6 
      7 <?xml version="1.0" encoding="UTF-8"?>
      8 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      9 <plist version="1.0">
     10 <dict>
     11 	<key>CFBundleDevelopmentRegion</key>
     12 	<string>English</string>
     13 	<key>CFBundleExecutable</key>
     14 	<string>${EXECUTABLE_NAME}</string>
     15 	<key>CFBundleIdentifier</key>
     16 	<string>${EXECUTABLE_NAME}</string>
     17 	<key>CFBundleInfoDictionaryVersion</key>
     18 	<string>6.0</string>
     19 	<key>CFBundleName</key>
     20 	<string>${PRODUCT_NAME}</string>
     21 	<key>CFBundlePackageType</key>
     22 	<string>XPC!</string>
     23 	<key>CFBundleShortVersionString</key>
     24 	<string>1.0</string>
     25 	<key>CFBundleSignature</key>
     26 	<string>????</string>
     27 	<key>CFBundleVersion</key>
     28 	<string>310.99.0</string>
     29 	<key>NSHumanReadableCopyright</key>
     30 	<string>Copyright  2012 Apple Inc. All rights reserved.</string>
     31 	<key>XPCService</key>
     32 	<dict>
     33 		<key>_AllowedClients</key>
     34 		<array>
     35 			<string> identifier = com.apple.lldb AND_APPLE_CODE_SIGNED</string>
     36             <string> identifier = com.apple.dt.Xcode AND_APPLE_CODE_SIGNED</string>
     37 		</array>
     38 		<key>ServiceType</key>
     39 		<string>Application</string>
     40         <key>JoinExistingSession</key>
     41         <true/>
     42 	</dict>
     43 </dict>
     44 </plist>
     45