Move the servo binary to ports.

This commit is contained in:
Ms2ger 2016-04-19 09:46:47 +02:00
parent 3fdce39429
commit 9a5abab442
13 changed files with 155 additions and 104 deletions

View file

@ -498,13 +498,13 @@ class CommandBase(object):
return env
def servo_crate(self):
return path.join(self.context.topdir, "components", "servo")
return path.join(self.context.topdir, "ports", "servo")
def servo_features(self):
"""Return a list of optional features to enable for the Servo crate"""
features = []
if self.config["build"]["debug-mozjs"]:
features += ["script/debugmozjs"]
features += ["debugmozjs"]
return features
def android_support_dir(self):