mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
Internal cleanup
PiperOrigin-RevId: 270631972 Change-Id: Ifd8db261bd5380fd14357a283fb9fd67c7d25fa0
This commit is contained in:
parent
d43d09c746
commit
ad2521a1e8
|
@ -142,7 +142,7 @@ cc_library(
|
||||||
deps = [
|
deps = [
|
||||||
":call",
|
":call",
|
||||||
":lenval_core",
|
":lenval_core",
|
||||||
":proto_arg_cc",
|
":proto_arg_cc_cc_proto",
|
||||||
":var_type",
|
":var_type",
|
||||||
"//sandboxed_api/sandbox2:comms",
|
"//sandboxed_api/sandbox2:comms",
|
||||||
"//sandboxed_api/util:status",
|
"//sandboxed_api/util:status",
|
||||||
|
@ -169,7 +169,7 @@ cc_library(
|
||||||
deps = [
|
deps = [
|
||||||
":call",
|
":call",
|
||||||
":lenval_core",
|
":lenval_core",
|
||||||
":proto_arg_cc",
|
":proto_arg_cc_cc_proto",
|
||||||
":vars",
|
":vars",
|
||||||
"//sandboxed_api/sandbox2:client",
|
"//sandboxed_api/sandbox2:client",
|
||||||
"//sandboxed_api/sandbox2:comms",
|
"//sandboxed_api/sandbox2:comms",
|
||||||
|
@ -190,7 +190,7 @@ cc_test(
|
||||||
deps = [
|
deps = [
|
||||||
":sapi",
|
":sapi",
|
||||||
"//sandboxed_api/examples/stringop/lib:stringop-sapi",
|
"//sandboxed_api/examples/stringop/lib:stringop-sapi",
|
||||||
"//sandboxed_api/examples/stringop/lib:stringop_params_proto",
|
"//sandboxed_api/examples/stringop/lib:stringop_params_cc_proto",
|
||||||
"//sandboxed_api/examples/sum/lib:sum-sapi",
|
"//sandboxed_api/examples/sum/lib:sum-sapi",
|
||||||
"//sandboxed_api/examples/sum/lib:sum-sapi_embed",
|
"//sandboxed_api/examples/sum/lib:sum-sapi_embed",
|
||||||
"//sandboxed_api/util:status",
|
"//sandboxed_api/util:status",
|
||||||
|
|
|
@ -27,7 +27,7 @@ cc_test(
|
||||||
"//sandboxed_api:sapi",
|
"//sandboxed_api:sapi",
|
||||||
"//sandboxed_api:vars",
|
"//sandboxed_api:vars",
|
||||||
"//sandboxed_api/examples/stringop/lib:stringop-sapi",
|
"//sandboxed_api/examples/stringop/lib:stringop-sapi",
|
||||||
"//sandboxed_api/examples/stringop/lib:stringop_params_proto_cc",
|
"//sandboxed_api/examples/stringop/lib:stringop_params_proto_cc_cc_proto",
|
||||||
"//sandboxed_api/util:flags",
|
"//sandboxed_api/util:flags",
|
||||||
"//sandboxed_api/util:status",
|
"//sandboxed_api/util:status",
|
||||||
"//sandboxed_api/util:status_matchers",
|
"//sandboxed_api/util:status_matchers",
|
||||||
|
|
|
@ -30,7 +30,7 @@ cc_library(
|
||||||
copts = sapi_platform_copts(),
|
copts = sapi_platform_copts(),
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
deps = [
|
deps = [
|
||||||
":stringop_params_proto_cc",
|
":stringop_params_proto_cc_cc_proto",
|
||||||
"//sandboxed_api:lenval_core",
|
"//sandboxed_api:lenval_core",
|
||||||
],
|
],
|
||||||
alwayslink = 1, # All functions are linked into dependent binaries
|
alwayslink = 1, # All functions are linked into dependent binaries
|
||||||
|
|
|
@ -25,7 +25,7 @@ cc_binary(
|
||||||
"//sandboxed_api:sapi",
|
"//sandboxed_api:sapi",
|
||||||
"//sandboxed_api:vars",
|
"//sandboxed_api:vars",
|
||||||
"//sandboxed_api/examples/sum/lib:sum-sapi",
|
"//sandboxed_api/examples/sum/lib:sum-sapi",
|
||||||
"//sandboxed_api/examples/sum/lib:sum_params_proto_cc",
|
"//sandboxed_api/examples/sum/lib:sum_params_proto_cc_cc_proto",
|
||||||
"//sandboxed_api/util:flags",
|
"//sandboxed_api/util:flags",
|
||||||
"//sandboxed_api/util:status",
|
"//sandboxed_api/util:status",
|
||||||
"@com_google_absl//absl/memory",
|
"@com_google_absl//absl/memory",
|
||||||
|
|
|
@ -34,7 +34,7 @@ cc_library(
|
||||||
copts = sapi_platform_copts(),
|
copts = sapi_platform_copts(),
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
deps = [
|
deps = [
|
||||||
":sum_params_proto_cc",
|
":sum_params_proto_cc_cc_proto",
|
||||||
"@com_google_glog//:glog",
|
"@com_google_glog//:glog",
|
||||||
],
|
],
|
||||||
alwayslink = 1, # All functions are linked into depending binaries
|
alwayslink = 1, # All functions are linked into depending binaries
|
||||||
|
|
|
@ -41,7 +41,7 @@ cc_library(
|
||||||
copts = sapi_platform_copts(),
|
copts = sapi_platform_copts(),
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
deps = [
|
deps = [
|
||||||
":status_proto_cc",
|
":status_proto_cc_cc_proto",
|
||||||
"@com_google_absl//absl/base:core_headers",
|
"@com_google_absl//absl/base:core_headers",
|
||||||
"@com_google_absl//absl/meta:type_traits",
|
"@com_google_absl//absl/meta:type_traits",
|
||||||
"@com_google_absl//absl/strings",
|
"@com_google_absl//absl/strings",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user