diff options
author | Chong Cai <chongc@google.com> | 2021-05-14 13:27:14 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-05-14 13:29:36 -0700 |
commit | eb7e83f645cc21f3219865d38fa7f8e06852c822 (patch) | |
tree | 4e1e8f1ea0781580d4365fed6f2e3f797866835b /test/util/BUILD | |
parent | 600d14f83e1dca4816ab4bba8aa8eb2c90a5c466 (diff) |
Add verity_mmap tests
PiperOrigin-RevId: 373854462
Diffstat (limited to 'test/util/BUILD')
-rw-r--r-- | test/util/BUILD | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/util/BUILD b/test/util/BUILD index 8985b54af..cc83221ea 100644 --- a/test/util/BUILD +++ b/test/util/BUILD @@ -401,3 +401,16 @@ cc_library( "@com_google_absl//absl/strings", ], ) + +cc_library( + name = "verity_util", + testonly = 1, + srcs = ["verity_util.cc"], + hdrs = ["verity_util.h"], + deps = [ + ":fs_util", + ":mount_util", + ":posix_error", + ":temp_path", + ], +) |