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.
17 lines
636 B
17 lines
636 B
"""Loads the GFlags repo and patch it with android linkopt fix."""
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
def repo():
|
|
http_archive(
|
|
name = "com_github_gflags_gflags",
|
|
sha256 = "ae27cdbcd6a2f935baa78e4f21f675649271634c092b1be01469440495609d0e",
|
|
strip_prefix = "gflags-2.2.1",
|
|
urls = [
|
|
"http://mirror.tensorflow.org/github.com/gflags/gflags/archive/v2.2.1.tar.gz",
|
|
"https://github.com/gflags/gflags/archive/v2.2.1.tar.gz",
|
|
],
|
|
patches = ["@//third_party/gflags:fix_android_pthread_link.patch"],
|
|
patch_args = ["-p1"],
|
|
)
|