10 lines
320 B
Python
10 lines
320 B
Python
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
||
|
|
||
|
## C++ dependencies
|
||
|
http_archive(
|
||
|
name = "gtest",
|
||
|
url = "https://github.com/google/googletest/archive/release-1.10.0.zip",
|
||
|
sha256 = "94c634d499558a76fa649edb13721dce6e98fb1e7018dfaeba3cd7a083945e91",
|
||
|
build_file = "@//:gtest.BUILD",
|
||
|
)
|