Internal change
PiperOrigin-RevId: 501971410
This commit is contained in:
parent
aef4cca406
commit
92a2e02ace
|
@ -88,6 +88,7 @@ cc_library(
|
||||||
name = "message_matchers",
|
name = "message_matchers",
|
||||||
testonly = True,
|
testonly = True,
|
||||||
hdrs = ["message_matchers.h"],
|
hdrs = ["message_matchers.h"],
|
||||||
|
|
||||||
# Use this library through "mediapipe/framework/port:gtest_main".
|
# Use this library through "mediapipe/framework/port:gtest_main".
|
||||||
visibility = [
|
visibility = [
|
||||||
"//mediapipe/framework/port:__pkg__",
|
"//mediapipe/framework/port:__pkg__",
|
||||||
|
@ -145,6 +146,7 @@ cc_library(
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "map_util",
|
name = "map_util",
|
||||||
hdrs = ["map_util.h"],
|
hdrs = ["map_util.h"],
|
||||||
|
|
||||||
# Use this library through "mediapipe/framework/port:map_util".
|
# Use this library through "mediapipe/framework/port:map_util".
|
||||||
visibility = ["//mediapipe/framework/port:__pkg__"],
|
visibility = ["//mediapipe/framework/port:__pkg__"],
|
||||||
deps = ["//mediapipe/framework/port:logging"],
|
deps = ["//mediapipe/framework/port:logging"],
|
||||||
|
@ -180,6 +182,7 @@ cc_library(
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "point",
|
name = "point",
|
||||||
hdrs = ["point2.h"],
|
hdrs = ["point2.h"],
|
||||||
|
|
||||||
# Use this library through "mediapipe/framework/port:point".
|
# Use this library through "mediapipe/framework/port:point".
|
||||||
visibility = ["//mediapipe/framework/port:__pkg__"],
|
visibility = ["//mediapipe/framework/port:__pkg__"],
|
||||||
deps = [
|
deps = [
|
||||||
|
@ -199,6 +202,7 @@ cc_library(
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "rectangle",
|
name = "rectangle",
|
||||||
hdrs = ["rectangle.h"],
|
hdrs = ["rectangle.h"],
|
||||||
|
|
||||||
# Use this library through "mediapipe/framework/port:rectangle".
|
# Use this library through "mediapipe/framework/port:rectangle".
|
||||||
visibility = ["//mediapipe/framework/port:__pkg__"],
|
visibility = ["//mediapipe/framework/port:__pkg__"],
|
||||||
deps = [
|
deps = [
|
||||||
|
@ -239,6 +243,7 @@ cc_library(
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "singleton",
|
name = "singleton",
|
||||||
hdrs = ["singleton.h"],
|
hdrs = ["singleton.h"],
|
||||||
|
|
||||||
# Use this library through "mediapipe/framework/port:singleton".
|
# Use this library through "mediapipe/framework/port:singleton".
|
||||||
visibility = ["//mediapipe/framework/port:__pkg__"],
|
visibility = ["//mediapipe/framework/port:__pkg__"],
|
||||||
deps = [
|
deps = [
|
||||||
|
@ -249,6 +254,7 @@ cc_library(
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "source_location",
|
name = "source_location",
|
||||||
hdrs = ["source_location.h"],
|
hdrs = ["source_location.h"],
|
||||||
|
|
||||||
# Use this library through "mediapipe/framework/port:source_location".
|
# Use this library through "mediapipe/framework/port:source_location".
|
||||||
visibility = ["//mediapipe/framework/port:__pkg__"],
|
visibility = ["//mediapipe/framework/port:__pkg__"],
|
||||||
)
|
)
|
||||||
|
@ -265,6 +271,7 @@ cc_library(
|
||||||
"status_builder.h",
|
"status_builder.h",
|
||||||
"status_macros.h",
|
"status_macros.h",
|
||||||
],
|
],
|
||||||
|
|
||||||
# Use this library through "mediapipe/framework/port:status".
|
# Use this library through "mediapipe/framework/port:status".
|
||||||
visibility = ["//mediapipe/framework/port:__pkg__"],
|
visibility = ["//mediapipe/framework/port:__pkg__"],
|
||||||
deps = [
|
deps = [
|
||||||
|
@ -288,6 +295,7 @@ cc_library(
|
||||||
name = "status_matchers",
|
name = "status_matchers",
|
||||||
testonly = 1,
|
testonly = 1,
|
||||||
hdrs = ["status_matchers.h"],
|
hdrs = ["status_matchers.h"],
|
||||||
|
|
||||||
# Use this library through "mediapipe/framework/port:gtest_main".
|
# Use this library through "mediapipe/framework/port:gtest_main".
|
||||||
visibility = ["//mediapipe/framework/port:__pkg__"],
|
visibility = ["//mediapipe/framework/port:__pkg__"],
|
||||||
deps = [
|
deps = [
|
||||||
|
@ -301,6 +309,7 @@ cc_library(
|
||||||
name = "ret_check",
|
name = "ret_check",
|
||||||
srcs = ["ret_check.cc"],
|
srcs = ["ret_check.cc"],
|
||||||
hdrs = ["ret_check.h"],
|
hdrs = ["ret_check.h"],
|
||||||
|
|
||||||
# Use this library through "mediapipe/framework/port:ret_check".
|
# Use this library through "mediapipe/framework/port:ret_check".
|
||||||
visibility = ["//mediapipe/framework/port:__pkg__"],
|
visibility = ["//mediapipe/framework/port:__pkg__"],
|
||||||
deps = [
|
deps = [
|
||||||
|
@ -321,6 +330,7 @@ cc_library(
|
||||||
"//conditions:default": ["threadpool_pthread_impl.cc"],
|
"//conditions:default": ["threadpool_pthread_impl.cc"],
|
||||||
}),
|
}),
|
||||||
hdrs = ["threadpool.h"],
|
hdrs = ["threadpool.h"],
|
||||||
|
|
||||||
# Use this library through "mediapipe/framework/port:threadpool".
|
# Use this library through "mediapipe/framework/port:threadpool".
|
||||||
visibility = ["//mediapipe/framework/port:__pkg__"],
|
visibility = ["//mediapipe/framework/port:__pkg__"],
|
||||||
deps = [
|
deps = [
|
||||||
|
@ -335,6 +345,7 @@ cc_library(
|
||||||
name = "topologicalsorter",
|
name = "topologicalsorter",
|
||||||
srcs = ["topologicalsorter.cc"],
|
srcs = ["topologicalsorter.cc"],
|
||||||
hdrs = ["topologicalsorter.h"],
|
hdrs = ["topologicalsorter.h"],
|
||||||
|
|
||||||
# Use this library through "mediapipe/framework/port:topologicalsorter".
|
# Use this library through "mediapipe/framework/port:topologicalsorter".
|
||||||
visibility = ["//mediapipe/framework/port:__pkg__"],
|
visibility = ["//mediapipe/framework/port:__pkg__"],
|
||||||
deps = [
|
deps = [
|
||||||
|
@ -345,6 +356,7 @@ cc_library(
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "vector",
|
name = "vector",
|
||||||
hdrs = ["vector.h"],
|
hdrs = ["vector.h"],
|
||||||
|
|
||||||
# Use this library through "mediapipe/framework/port:vector".
|
# Use this library through "mediapipe/framework/port:vector".
|
||||||
visibility = ["//mediapipe/framework/port:__pkg__"],
|
visibility = ["//mediapipe/framework/port:__pkg__"],
|
||||||
deps = [
|
deps = [
|
||||||
|
|
|
@ -284,6 +284,7 @@ cc_library(
|
||||||
"//mediapipe:ios": ["profiler_resource_util_ios.cc"],
|
"//mediapipe:ios": ["profiler_resource_util_ios.cc"],
|
||||||
}),
|
}),
|
||||||
hdrs = ["profiler_resource_util.h"],
|
hdrs = ["profiler_resource_util.h"],
|
||||||
|
|
||||||
# We use Objective-C++ on iOS.
|
# We use Objective-C++ on iOS.
|
||||||
copts = select({
|
copts = select({
|
||||||
"//conditions:default": [],
|
"//conditions:default": [],
|
||||||
|
|
|
@ -186,6 +186,7 @@ cc_library(
|
||||||
hdrs = [
|
hdrs = [
|
||||||
"resource_util.h",
|
"resource_util.h",
|
||||||
],
|
],
|
||||||
|
|
||||||
# We use Objective-C++ on iOS.
|
# We use Objective-C++ on iOS.
|
||||||
copts = select({
|
copts = select({
|
||||||
"//conditions:default": [],
|
"//conditions:default": [],
|
||||||
|
|
Loading…
Reference in New Issue
Block a user