blob: f388616f3d770118f9f863d448186732b9246c77 [file] [log] [blame]
# Copyright 2020 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Frequently used git repository URLs."""
repos = struct(
FLUTTER_INFRA = "https://flutter.googlesource.com/infra",
FLUTTER_RECIPES = "https://flutter.googlesource.com/recipes",
# Map makes it easy to look up source from .ci.yaml targets.
# TODO(chillers): Migrate all repos to map. https://github.com/flutter/flutter/issues/84998
GIT_REMOTE = {
"cocoon": "https://flutter.googlesource.com/mirrors/cocoon",
"engine": "https://flutter.googlesource.com/mirrors/engine",
"flutter": "https://flutter.googlesource.com/mirrors/flutter",
"packages": "https://flutter.googlesource.com/mirrors/packages",
},
)