Files
mediapipe/mediapipe/framework/tool/build_defs.bzl
T
MediaPipe Teamandjqtang b6e680647c Project import generated by Copybara.
GitOrigin-RevId: d1277f8cb42aa228165e96775687ff2e0effffcf
2020-04-24 16:32:37 -07:00

12 lines
417 B
Python

"""MediaPipe BUILD rules and related utilities."""
# Sanitize a dependency so that it works correctly from targets that
# include MediaPipe as an external dependency.
def clean_dep(dep):
return str(Label(dep))
# Sanitize a list of dependencies so that they work correctly from targets that
# include MediaPipe as an external dependency.
def clean_deps(dep_list):
return [clean_dep(dep) for dep in dep_list]