PiperOrigin-RevId: 244836017
Change-Id: I034cfb1af4835256aa9b8b7ac3e80a341e9a9271
This commit is contained in:
Sandboxed API Team 2019-04-23 05:14:00 -07:00 committed by Copybara-Service
parent 8ad4fcd0a8
commit 726b1fb451
3 changed files with 6 additions and 0 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",

View File

@ -28,6 +28,7 @@ py_test(
"code_test.py",
"code_test_util.py",
],
python_version = "PY2",
deps = [
":code",
"@com_google_absl_py//absl/testing:absltest",
@ -38,6 +39,7 @@ py_test(
py_binary(
name = "sapi_generator",
srcs = ["sapi_generator.py"],
python_version = "PY2",
visibility = ["//visibility:public"],
deps = [
":code",

View File

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