plugin-container.xml (892B)
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 <!-- 4 Entitlements to apply to the plugin-container.app bundle during 5 codesigning of developer builds. 6 --> 7 <plist version="1.0"> 8 <dict> 9 <!-- Firefox needs to create executable pages with MAP_JIT --> 10 <key>com.apple.security.cs.allow-jit</key><true/> 11 12 <!-- Allow dyld environment variables for debugging --> 13 <key>com.apple.security.cs.allow-dyld-environment-variables</key><true/> 14 15 <!-- Allow debuggers to attach to running executables --> 16 <key>com.apple.security.get-task-allow</key><true/> 17 18 <!-- For dev builds only, allow loading third party libraries as a 19 workaround enabling self-signed builds to launch. --> 20 <key>com.apple.security.cs.disable-library-validation</key><true/> 21 </dict> 22 </plist>