aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/bootstrap_commands.py
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2018-09-03 13:34:24 +0530
committerManish Goregaokar <manishsmail@gmail.com>2018-09-11 19:34:38 +0530
commiteba68a1a4947b29bcc58fbc502cb70dcc0ac71c0 (patch)
tree12efbf2822d90075c282a8a575a36f2e205bc2a7 /python/servo/bootstrap_commands.py
parent1913ac706cef91125fa8e50629548826c60a66d3 (diff)
downloadservo-eba68a1a4947b29bcc58fbc502cb70dcc0ac71c0.tar.gz
servo-eba68a1a4947b29bcc58fbc502cb70dcc0ac71c0.zip
Add mach bootstrap-gstreamer
Diffstat (limited to 'python/servo/bootstrap_commands.py')
-rw-r--r--python/servo/bootstrap_commands.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py
index 66508c5b959..84978737b64 100644
--- a/python/servo/bootstrap_commands.py
+++ b/python/servo/bootstrap_commands.py
@@ -64,6 +64,15 @@ class MachCommands(CommandBase):
def bootstrap_salt(self, force=False):
return bootstrap.bootstrap(self.context, force=force, specific="salt")
+ @Command('bootstrap-gstreamer',
+ description='Set up a local copy of the gstreamer libraries (linux only).',
+ category='bootstrap')
+ @CommandArgument('--force', '-f',
+ action='store_true',
+ help='Boostrap without confirmation')
+ def bootstrap_gstreamer(self, force=False):
+ return bootstrap.bootstrap(self.context, force=force, specific="gstreamer")
+
@Command('bootstrap-android',
description='Install the Android SDK and NDK.',
category='bootstrap')