From e2eb0597cbde370a630af61f2c7b948f1f161f42 Mon Sep 17 00:00:00 2001 From: Chris Kennelly Date: Sat, 13 Apr 2019 13:30:25 -0700 Subject: [PATCH] Internal change PiperOrigin-RevId: 243440925 Change-Id: I085535962e1d754f7bc32e08b1785a574062edaa --- sandboxed_api/sandbox2/BUILD.bazel | 3 +++ sandboxed_api/util/BUILD.bazel | 1 + 2 files changed, 4 insertions(+) diff --git a/sandboxed_api/sandbox2/BUILD.bazel b/sandboxed_api/sandbox2/BUILD.bazel index 5d54466..2271b46 100644 --- a/sandboxed_api/sandbox2/BUILD.bazel +++ b/sandboxed_api/sandbox2/BUILD.bazel @@ -168,6 +168,7 @@ cc_library( deps = [ ":bpfdisassembler", ":comms", + ":fs", ":namespace", ":regs", ":syscall", @@ -270,6 +271,7 @@ cc_library( ":violation_proto_cc", ":forkserver", ":forkserver_proto_cc", + ":fs", ":global_forkserver", ":ipc", ":limits", @@ -279,6 +281,7 @@ cc_library( ":notify", ":policy", ":regs", + ":reporter", ":result", ":syscall", ":util", diff --git a/sandboxed_api/util/BUILD.bazel b/sandboxed_api/util/BUILD.bazel index babb2b8..9fd8ea8 100644 --- a/sandboxed_api/util/BUILD.bazel +++ b/sandboxed_api/util/BUILD.bazel @@ -76,6 +76,7 @@ cc_test( name = "status_test", srcs = ["status_test.cc"], deps = [ + ":status", ":status_matchers", "@com_google_googletest//:gtest_main", ],