mirror of
https://github.com/servo/servo.git
synced 2025-06-29 19:43:39 +01:00
Print the full path for errors occurring in the servo crate
This commit is contained in:
parent
c494d25e24
commit
a0ae81610d
7 changed files with 29 additions and 19 deletions
|
@ -545,6 +545,15 @@ class CommandBase(object):
|
|||
def servo_crate(self):
|
||||
return path.join(self.context.topdir, "ports", "servo")
|
||||
|
||||
def servo_manifest(self):
|
||||
return path.join(self.context.topdir, "ports", "servo", "Cargo.toml")
|
||||
|
||||
def geckolib_manifest(self):
|
||||
return path.join(self.context.topdir, "ports", "geckolib", "Cargo.toml")
|
||||
|
||||
def cef_manifest(self):
|
||||
return path.join(self.context.topdir, "ports", "cef", "Cargo.toml")
|
||||
|
||||
def servo_features(self):
|
||||
"""Return a list of optional features to enable for the Servo crate"""
|
||||
features = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue