diff options
author | Paul Rouget <me@paulrouget.com> | 2016-08-15 03:44:46 +0200 |
---|---|---|
committer | Paul Rouget <me@paulrouget.com> | 2016-08-15 03:44:46 +0200 |
commit | c40a658e9c2d23af4ac6ab70eb64b9ebca8eff3d (patch) | |
tree | a4c999d6ce71422892b197ac071a36a934a4fa54 /python/servo/package_commands.py | |
parent | 27472ffa5950efb8fd895460b13f83f5ce712f10 (diff) | |
download | servo-c40a658e9c2d23af4ac6ab70eb64b9ebca8eff3d.tar.gz servo-c40a658e9c2d23af4ac6ab70eb64b9ebca8eff3d.zip |
Revert "Enable multiprocess and sandbox"
This reverts commit 663f8530cfc1464e11ece49131949c7e798ef7f2.
Diffstat (limited to 'python/servo/package_commands.py')
-rw-r--r-- | python/servo/package_commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py index c5f55264ad1..314d1ceaf34 100644 --- a/python/servo/package_commands.py +++ b/python/servo/package_commands.py @@ -177,7 +177,7 @@ class PackageCommands(CommandBase): print("Writing run-servo") bhtml_path = path.join('${0%/*}/../Resources', browserhtml_path.split('/')[-1], 'out', 'index.html') runservo = os.open(dir_to_app + '/Contents/MacOS/run-servo', os.O_WRONLY | os.O_CREAT, int("0755", 8)) - os.write(runservo, '#!/bin/bash\nexec ${0%/*}/servo -M -S ' + bhtml_path) + os.write(runservo, '#!/bin/bash\nexec ${0%/*}/servo ' + bhtml_path) os.close(runservo) print("Creating dmg") @@ -278,7 +278,7 @@ class PackageCommands(CommandBase): delete(dir_to_package + '/build/' + f) print("Writing runservo.sh") # TODO: deduplicate this arg list from post_build_commands - servo_args = ['-w', '-b', '-M', '-S', + servo_args = ['-w', '-b', '--pref', 'dom.mozbrowser.enabled', '--pref', 'dom.forcetouch.enabled', '--pref', 'shell.builtin-key-shortcuts.enabled=false', |