mediapipe/mediapipe/framework/testdata/BUILD
MediaPipe Team 4dc4b19ddb Project import generated by Copybara.
GitOrigin-RevId: 1e13be30e2c6838d4a2ff768a39c414bc80534bb
2022-09-06 21:46:17 +00:00

58 lines
1.6 KiB
Python

#
# Copyright 2018 The MediaPipe Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load("//mediapipe/framework/port:build_config.bzl", "mediapipe_proto_library")
licenses(["notice"])
package(default_visibility = ["//visibility:private"])
mediapipe_proto_library(
name = "sky_light_calculator_proto",
srcs = ["sky_light_calculator.proto"],
visibility = ["//visibility:public"],
)
mediapipe_proto_library(
name = "night_light_calculator_proto",
srcs = ["night_light_calculator.proto"],
visibility = ["//visibility:public"],
deps = [
"//mediapipe/framework:calculator_options_proto",
"//mediapipe/framework:calculator_proto",
],
)
mediapipe_proto_library(
name = "zoo_mutator_proto",
srcs = ["zoo_mutator.proto"],
deps = ["@com_google_protobuf//:any_proto"],
)
mediapipe_proto_library(
name = "zoo_mutation_calculator_proto",
srcs = ["zoo_mutation_calculator.proto"],
visibility = ["//mediapipe:__subpackages__"],
deps = [
":zoo_mutator_proto",
"//mediapipe/framework:packet_generator_proto",
],
)
exports_files([
"perfetto_detailed.pbtxt",
"perfetto_minimal.pbtxt",
])