michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: config = { michael@0: "marionette_desktop_options": [ michael@0: "--type=%(type)s", michael@0: "--binary=%(binary)s", michael@0: "--address=%(address)s", michael@0: ], michael@0: "marionette_emulator_options": [ michael@0: "--type=%(type)s", michael@0: "--logcat-dir=%(logcat_dir)s", michael@0: "--emulator=%(emulator)s", michael@0: "--homedir=%(homedir)s", michael@0: ], michael@0: "webapi_emulator_options": [ michael@0: "--type=%(type)s", michael@0: "--symbols-path=%(symbols_path)s", michael@0: "--logcat-dir=%(logcat_dir)s", michael@0: "--emulator=%(emulator)s", michael@0: "--homedir=%(homedir)s", michael@0: ], michael@0: # This combination is not currently run. michael@0: "webapi_desktop_options": [ michael@0: ], michael@0: "gaiatest_emulator_options": [ michael@0: "--restart", michael@0: "--timeout=%(timeout)s", michael@0: "--type=%(type)s", michael@0: "--testvars=%(testvars)s", michael@0: "--profile=%(profile)s", michael@0: "--symbols-path=%(symbols_path)s", michael@0: "--xml-output=%(xml_output)s", michael@0: "--html-output=%(html_output)s", michael@0: "--logcat-dir=%(logcat_dir)s", michael@0: "--emulator=%(emulator)s", michael@0: "--homedir=%(homedir)s", michael@0: ], michael@0: "gaiatest_desktop_options": [ michael@0: "--restart", michael@0: "--timeout=%(timeout)s", michael@0: "--type=%(type)s", michael@0: "--testvars=%(testvars)s", michael@0: "--profile=%(profile)s", michael@0: "--symbols-path=%(symbols_path)s", michael@0: "--xml-output=%(xml_output)s", michael@0: "--html-output=%(html_output)s", michael@0: "--binary=%(binary)s", michael@0: "--address=%(address)s", michael@0: ], michael@0: }