diff options
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r-- | python/servo/post_build_commands.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index 1855fefff25..4c3b6aba3c5 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -102,6 +102,9 @@ class PostBuildCommands(CommandBase): rust_log = env.get("RUST_LOG", None) if rust_log: extra += " -e servolog " + rust_log + gst_debug = env.get("GST_DEBUG", None) + if gst_debug: + extra += " -e gstdebug " + gst_debug script += [ "am start " + extra + " org.mozilla.servo/org.mozilla.servo.MainActivity", "sleep 0.5", |