browser.xml (1409B)
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 main browser process executable 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 <!-- For dev builds only, allow loading third party libraries as a 13 workaround enabling self-signed builds to launch. --> 14 <key>com.apple.security.cs.disable-library-validation</key><true/> 15 16 <!-- Allow dyld environment variables for gtests and debugging --> 17 <key>com.apple.security.cs.allow-dyld-environment-variables</key><true/> 18 19 <!-- Allow debuggers to attach to running executables --> 20 <key>com.apple.security.get-task-allow</key><true/> 21 22 <!-- Firefox needs to access the microphone on sites the user allows --> 23 <key>com.apple.security.device.audio-input</key><true/> 24 25 <!-- Firefox needs to access the camera on sites the user allows --> 26 <key>com.apple.security.device.camera</key><true/> 27 28 <!-- Firefox needs to access the location on sites the user allows --> 29 <key>com.apple.security.personal-information.location</key><true/> 30 31 <!-- For SmartCardServices(7) --> 32 <key>com.apple.security.smartcard</key><true/> 33 </dict> 34 </plist>