Adding Google test dependency.

This commit is contained in:
Alexander Gutkin 2020-11-21 23:33:22 +00:00
parent a147b7da27
commit 68324a90e8

View file

@ -1,3 +1,11 @@
# Bazel (https://bazel.build/) workspace.
workspace(name = "com_github_utfcpp")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "com_google_googletest",
strip_prefix = "googletest-master",
urls = ["https://github.com/google/googletest/archive/master.zip"],
)