[build] MVP for building with bazel (#6994)

This commit is contained in:
PJ Reiniger
2024-10-19 12:54:49 -04:00
committed by GitHub
parent 95b9bd880b
commit 36e0c9d6db
31 changed files with 1544 additions and 1 deletions

10
thirdparty/googletest/BUILD.bazel vendored Normal file
View File

@@ -0,0 +1,10 @@
load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "googletest.static",
srcs = glob(["src/**"]),
hdrs = glob(["include/**"]),
includes = ["src/googletest"],
strip_include_prefix = "include",
visibility = ["//visibility:public"],
)