コード例 #1
0
# Required for Python to search this directory for module files

# Keep this file free of any code or import statements that could
# cause either an error to occur or a log message to be logged.
# This ensures that calling code can import initialization code from
# webkitpy before any errors or log messages due to code in this file.
# Initialization code can include things like version-checking code and
# logging configuration code.
#
# We do not execute any version-checking code or logging configuration
# code in this file so that callers can opt-in as they want.  This also
# allows different callers to choose different initialization code,
# as necessary.
import os
import imp

from webkitpy.benchmark_runner.utils import load_subclasses
from http_server_driver_factory import HTTPServerDriverFactory


def http_server_driver_loader(http_server_driver_class):
    for platform in http_server_driver_class.platforms:
        HTTPServerDriverFactory.add(platform, http_server_driver_class)


load_subclasses(dirname=os.path.dirname(os.path.abspath(__file__)),
                base_class_name='HTTPServerDriver',
                base_class_file='http_server_driver.py',
                loader=http_server_driver_loader)
コード例 #2
0
ファイル: __init__.py プロジェクト: Comcast/WebKitForWayland
# Required for Python to search this directory for module files

# Keep this file free of any code or import statements that could
# cause either an error to occur or a log message to be logged.
# This ensures that calling code can import initialization code from
# webkitpy before any errors or log messages due to code in this file.
# Initialization code can include things like version-checking code and
# logging configuration code.
#
# We do not execute any version-checking code or logging configuration
# code in this file so that callers can opt-in as they want.  This also
# allows different callers to choose different initialization code,
# as necessary.
import os
import imp

from webkitpy.benchmark_runner.utils import load_subclasses
from http_server_driver_factory import HTTPServerDriverFactory


def http_server_driver_loader(http_server_driver_class):
    for platform in http_server_driver_class.platforms:
        HTTPServerDriverFactory.add(platform, http_server_driver_class)


load_subclasses(
    dirname=os.path.dirname(os.path.abspath(__file__)),
    base_class_name='HTTPServerDriver',
    base_class_file='http_server_driver.py',
    loader=http_server_driver_loader)
コード例 #3
0
ファイル: __init__.py プロジェクト: wendelas/openjfx
# Required for Python to search this directory for module files

# Keep this file free of any code or import statements that could
# cause either an error to occur or a log message to be logged.
# This ensures that calling code can import initialization code from
# webkitpy before any errors or log messages due to code in this file.
# Initialization code can include things like version-checking code and
# logging configuration code.
#
# We do not execute any version-checking code or logging configuration
# code in this file so that callers can opt-in as they want.  This also
# allows different callers to choose different initialization code,
# as necessary.
import os

from webkitpy.benchmark_runner.utils import load_subclasses
from benchmark_builder_factory import BenchmarkBuilderFactory


def benchmark_builder_loader(benchmark_builder_class):
    if benchmark_builder_class.builder_name:
        BenchmarkBuilderFactory.add(benchmark_builder_class.builder_name, benchmark_builder_class)


load_subclasses(
    dirname=os.path.dirname(os.path.abspath(__file__)),
    base_class_name='GenericBenchmarkBuilder',
    loader=benchmark_builder_loader)
コード例 #4
0
# Required for Python to search this directory for module files

# Keep this file free of any code or import statements that could
# cause either an error to occur or a log message to be logged.
# This ensures that calling code can import initialization code from
# webkitpy before any errors or log messages due to code in this file.
# Initialization code can include things like version-checking code and
# logging configuration code.
#
# We do not execute any version-checking code or logging configuration
# code in this file so that callers can opt-in as they want.  This also
# allows different callers to choose different initialization code,
# as necessary.
import os

from webkitpy.benchmark_runner.utils import load_subclasses
from browser_driver_factory import BrowserDriverFactory


def browser_driver_loader(browser_driver_class):
    if browser_driver_class.platform and browser_driver_class.browser_name:
        BrowserDriverFactory.add_browser_driver(browser_driver_class.platform, browser_driver_class.browser_name, browser_driver_class)


load_subclasses(
    dirname=os.path.dirname(os.path.abspath(__file__)),
    base_class_name='BrowserDriver',
    base_class_file='browser_driver.py',
    loader=browser_driver_loader)