summaryrefslogtreecommitdiffhomepage
path: root/test/fuse/linux/BUILD
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-08-04 13:25:40 -0700
committergVisor bot <gvisor-bot@google.com>2020-08-04 13:25:40 -0700
commitaf2f456735252b8412af676a3d6ff61690fdf9a7 (patch)
tree7375eb18c23f6aec637712e8171f115546ea898a /test/fuse/linux/BUILD
parent12c2c6ae303c97be5ad8e62b67ca265e2c4e0ba6 (diff)
parent21d0334e7f4a98ec49e7f46cacf2d51258eaec33 (diff)
Merge pull request #3320 from craig08:fuse-integration-test
PiperOrigin-RevId: 324877577
Diffstat (limited to 'test/fuse/linux/BUILD')
-rw-r--r--test/fuse/linux/BUILD21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/fuse/linux/BUILD b/test/fuse/linux/BUILD
new file mode 100644
index 000000000..49dc96c20
--- /dev/null
+++ b/test/fuse/linux/BUILD
@@ -0,0 +1,21 @@
+load("//tools:defs.bzl", "cc_library", "gtest")
+
+package(
+ default_visibility = ["//:sandbox"],
+ licenses = ["notice"],
+)
+
+cc_library(
+ name = "fuse_base",
+ testonly = 1,
+ srcs = [
+ "fuse_base.cc",
+ "fuse_base.h",
+ ],
+ deps = [
+ gtest,
+ "//test/util:posix_error",
+ "//test/util:test_util",
+ "@com_google_absl//absl/strings:str_format",
+ ],
+)