You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bazlets.bzl 368B

1234567891011121314151617
  1. NAME = "com_googlesource_gerrit_bazlets"
  2. def load_bazlets(
  3. commit,
  4. local_path = None
  5. ):
  6. if not local_path:
  7. native.git_repository(
  8. name = NAME,
  9. remote = "https://gerrit.googlesource.com/bazlets",
  10. commit = commit,
  11. )
  12. else:
  13. native.local_repository(
  14. name = NAME,
  15. path = local_path,
  16. )