aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/build_commands.py
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2019-07-01 15:23:11 +0200
committerSimon Sapin <simon.sapin@exyr.org>2019-07-01 15:46:33 +0200
commit1df26052929f974b73a6f3bdb3825a90479308a4 (patch)
tree63afab59564abe5c2206b3b2a9af9145f3fad08f /python/servo/build_commands.py
parentbddfe9a4684cf6ffa68fb283a222ce14242553c8 (diff)
downloadservo-1df26052929f974b73a6f3bdb3825a90479308a4.tar.gz
servo-1df26052929f974b73a6f3bdb3825a90479308a4.zip
Rename {azure,raqote}_backend feature flags to canvas2d-{azure,raqote}
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r--python/servo/build_commands.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index 2010bfbce9b..997b0f319de 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -294,7 +294,7 @@ class MachCommands(CommandBase):
features += ["profilemozjs"]
if with_raqote:
- features += ["raqote_backend"]
+ features += ["canvas2d-raqote"]
if without_wgl:
features += ["no_wgl"]
@@ -304,8 +304,8 @@ class MachCommands(CommandBase):
if self.config["build"]["dom-backtrace"]:
features += ["dom-backtrace"]
- if "raqote_backend" not in features:
- features += ["azure_backend"]
+ if "canvas2d-raqote" not in features:
+ features += ["canvas2d-azure"]
if features:
opts += ["--features", "%s" % ' '.join(features)]