Internal change

PiperOrigin-RevId: 244882228
Change-Id: I506b92326fa83f214b1e7fab6c5b2e0889f8b197
This commit is contained in:
Wiktor Garbacz 2019-04-23 10:43:38 -07:00 committed by Copybara-Service
parent 63006c1476
commit 53d85ab4f2
2 changed files with 5 additions and 1 deletions

View File

@ -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",
@ -385,7 +388,7 @@ cc_library(
cc_test(
name = "mounts_test",
srcs = ["mounts_test.cc"],
data = ["//sandboxed_api/sandbox2/testcases:minimal_dynamic"],
data = [":testdata/minimal_dynamic"],
deps = [
":mounts",
":testing",

View File

@ -76,6 +76,7 @@ cc_test(
name = "status_test",
srcs = ["status_test.cc"],
deps = [
":status",
":status_matchers",
"@com_google_googletest//:gtest_main",
],