mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
I had to also register for the text/plain mime-type which turned out to be harder than expected. Mostly due to my confusion with mojo_shell using last-argument-wins argument parsing. R=ianh@google.com Review URL: https://codereview.chromium.org/672363002
39 lines
1.0 KiB
Python
Executable File
39 lines
1.0 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# Copyright 2014 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
|
|
BUILD_DIRECTORY = 'out'
|
|
CONFIG_DIRECTORY = 'Debug'
|
|
MOJO_SHELL_PATH = os.path.abspath(os.path.join(__file__, os.pardir, os.pardir,
|
|
os.pardir, BUILD_DIRECTORY, CONFIG_DIRECTORY, 'mojo_shell'))
|
|
|
|
SUPPORTED_MIME_TYPES = [
|
|
'text/html',
|
|
'text/plain',
|
|
]
|
|
|
|
def main(args):
|
|
content_handlers = ['%s,%s' % (mime_type, 'mojo://sky_viewer/')
|
|
for mime_type in SUPPORTED_MIME_TYPES]
|
|
shell_command = [
|
|
MOJO_SHELL_PATH,
|
|
'--v=1',
|
|
'--content-handlers=%s' % ','.join(content_handlers),
|
|
'--url-mappings=mojo:window_manager=mojo:sky_debugger',
|
|
'mojo:window_manager',
|
|
]
|
|
if args:
|
|
prompt_args = '--args-for=mojo://sky_debugger_prompt/ %s' % args[0]
|
|
shell_command.append(prompt_args)
|
|
subprocess.check_call(shell_command)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main(sys.argv[1:])
|