Cut over to Bazel.

This commit is contained in:
2023-02-16 19:56:49 -08:00
parent 08ce01ab87
commit 9a7208913d
18 changed files with 81 additions and 7 deletions

8
WORKSPACE Normal file
View File

@@ -0,0 +1,8 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "com_google_googletest",
sha256 = "983a7f2f4cc2a4d75d94ee06300c46a657291fba965e355d11ab3b6965a7b0e5",
strip_prefix = "googletest-b796f7d44681514f58a683a3a71ff17c94edb0c1",
urls = ["https://github.com/google/googletest/archive/b796f7d44681514f58a683a3a71ff17c94edb0c1.zip"],
)