• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""Provides the repo macro to import google libprotobuf_mutator"""
2
3load("//third_party:repo.bzl", "tf_http_archive", "tf_mirror_urls")
4
5def repo():
6    """Imports libprotobuf_mutator."""
7    tf_http_archive(
8        name = "com_google_libprotobuf_mutator",
9        sha256 = "792f250fb546bde8590e72d64311ea00a70c175fd77df6bb5e02328fa15fe28e",
10        strip_prefix = "libprotobuf-mutator-1.0",
11        build_file = "//third_party/libprotobuf_mutator:libprotobuf_mutator.BUILD",
12        urls = tf_mirror_urls("https://github.com/google/libprotobuf-mutator/archive/v1.0.tar.gz"),
13    )
14