diff options
author | Paul Rouget <me@paulrouget.com> | 2019-04-17 10:18:14 +0200 |
---|---|---|
committer | Paul Rouget <me@paulrouget.com> | 2019-04-29 10:04:51 +0200 |
commit | 21ed7653f491d9e378aa7a334b40e7327f4bfc90 (patch) | |
tree | 28ef0394a720aa569d25dd2f6989a16ea11a3708 /python/servo/command_base.py | |
parent | d58ea974baff1b51a43d2e2bf4b287ff11991a8d (diff) | |
download | servo-21ed7653f491d9e378aa7a334b40e7327f4bfc90.tar.gz servo-21ed7653f491d9e378aa7a334b40e7327f4bfc90.zip |
Refactoring of the Glutin port in preparation of the compositor refactoring.
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 2d159df3773..ac9789ca389 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -723,20 +723,20 @@ install them, let us know by filing a bug!") return env - def ports_servo_crate(self): - return path.join(self.context.topdir, "ports", "servo") + def ports_glutin_crate(self): + return path.join(self.context.topdir, "ports", "glutin") def add_manifest_path(self, args, android=False, libsimpleservo=False): if "--manifest-path" not in args: if libsimpleservo or android: manifest = self.ports_libsimpleservo_manifest(android) else: - manifest = self.ports_servo_manifest() + manifest = self.ports_glutin_manifest() args.append("--manifest-path") args.append(manifest) - def ports_servo_manifest(self): - return path.join(self.context.topdir, "ports", "servo", "Cargo.toml") + def ports_glutin_manifest(self): + return path.join(self.context.topdir, "ports", "glutin", "Cargo.toml") def ports_libsimpleservo_manifest(self, android=False): if android: |