Auto merge of #14172 - servo:ports, r=jdm

Move the servo binary to ports.

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14172)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-11-16 16:40:18 -06:00 committed by GitHub
commit f14e7339b5
13 changed files with 155 additions and 104 deletions

View file

@ -501,13 +501,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):