Beispiel #1
0
def ChromiumFileSplitter(path):
    """Splits the SVN path into branch and filename sections."""

    # List of projects we are interested in. The project names must exactly
    # match paths in the Subversion repository, relative to the 'path' URL
    # argument. build_utils.SplitPath() will use them as branch names to
    # kick off the Schedulers for different projects.
    projects = ['src']
    return build_utils.SplitPath(projects, path)
Beispiel #2
0
def ChromeTreeFileSplitter(path):
    """split_file for the 'src' project in the trunk."""

    # List of projects we are interested in. The project names must exactly
    # match paths in the Subversion repository, relative to the 'path' URL
    # argument. build_utils.SplitPath() will use them as branch names to
    # kick off the Schedulers for different projects.
    projects = ['trunk']
    return build_utils.SplitPath(projects, path)
Beispiel #3
0
def SkiaFileSplitter(path):
    """split_file for Skia."""
    projects = ['trunk']
    return build_utils.SplitPath(projects, path)
Beispiel #4
0
def WebkitFileSplitter(path):
    """split_file for webkit.org repository."""
    projects = ['trunk']
    return build_utils.SplitPath(projects, path)