diff options
author | Fabrice Desré <fabrice@desre.org> | 2014-11-06 22:47:02 -0800 |
---|---|---|
committer | Fabrice Desré <fabrice@desre.org> | 2014-11-06 22:47:02 -0800 |
commit | 8eb484417418d575af399389c6bf7d8418d405f1 (patch) | |
tree | 8944010b446a9df682d635276653a79f34a9775f /python/servo/command_base.py | |
parent | bb7621f5dc33dd5068a3a4de7cdfe3af8b3d4130 (diff) | |
download | servo-8eb484417418d575af399389c6bf7d8418d405f1.tar.gz servo-8eb484417418d575af399389c6bf7d8418d405f1.zip |
Issue #3804 : Allow enabling debug-mozjs from servobuild config
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index d78c0e13a1c..96cf287b329 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -79,6 +79,8 @@ class CommandBase(object): self.config.setdefault("build", {}) self.config["build"].setdefault("android", False) + self.config["build"].setdefault("debug-mozjs", False) + self.config.setdefault("android", {}) self.config["android"].setdefault("sdk", "") self.config["android"].setdefault("ndk", "") |