aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/bootstrap.py
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2018-09-07 14:42:19 +0530
committerManish Goregaokar <manishsmail@gmail.com>2018-09-11 19:34:38 +0530
commita380c5fd6e5e9eb2e6c54a77ce3d88f30dc4089d (patch)
treed5b1469e1e6916d7951419dcc369605b81d79ab4 /python/servo/bootstrap.py
parentd3ece2bc494103ecbd619327abd8f751a29a5c34 (diff)
downloadservo-a380c5fd6e5e9eb2e6c54a77ce3d88f30dc4089d.tar.gz
servo-a380c5fd6e5e9eb2e6c54a77ce3d88f30dc4089d.zip
Don't try to load gstreamer on non-x86
Diffstat (limited to 'python/servo/bootstrap.py')
-rw-r--r--python/servo/bootstrap.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py
index 24725f6382f..0e128d2826e 100644
--- a/python/servo/bootstrap.py
+++ b/python/servo/bootstrap.py
@@ -326,11 +326,13 @@ def windows_msvc(context, force=False):
return 0
+
LINUX_SPECIFIC_BOOTSTRAPPERS = {
"salt": salt,
"gstreamer": gstreamer,
}
+
def bootstrap(context, force=False, specific=None):
'''Dispatches to the right bootstrapping function for the OS.'''