summaryrefslogtreecommitdiffstats
path: root/tools/bazlets.bzl
blob: e14e488492c9e7dcc1d3b65fedc0f65432e2855e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
NAME = "com_googlesource_gerrit_bazlets"

def load_bazlets(
    commit,
    local_path = None
  ):
  if not local_path:
      native.git_repository(
          name = NAME,
          remote = "https://gerrit.googlesource.com/bazlets",
          commit = commit,
      )
  else:
      native.local_repository(
          name = NAME,
          path = local_path,
      )