Added tensorflow constants

This commit is contained in:
Prianka Liz Kariat 2022-12-05 17:02:20 +05:30
parent eaf6edc3a6
commit 03105c2a62

View File

@ -1,4 +1,3 @@
load("@org_tensorflow//tensorflow/lite/ios:ios.bzl", "TFL_DEFAULT_TAGS", "TFL_DISABLED_SANITIZER_TAGS", "TFL_MINIMUM_OS_VERSION")
load("@build_bazel_rules_apple//apple:ios.bzl", "ios_unit_test")
load("@org_tensorflow//tensorflow/lite:special_rules.bzl", "tflite_ios_lab_runner")
@ -6,6 +5,27 @@ package(default_visibility = ["//mediapipe/tasks:internal"])
licenses(["notice"])
TFL_MINIMUM_OS_VERSION = "11.0"
# LINT.ThenChange(
# TensorFlowLiteC.podspec.template,
# TensorFlowLiteSelectTfOps.podspec.template,
# ../objc/TensorFlowLiteObjC.podspec.template,
# ../swift/TensorFlowLiteSwift.podspec.template
# )
# Default tags for filtering iOS targets. Targets are restricted to Apple platforms.
TFL_DEFAULT_TAGS = [
"apple",
]
# Following sanitizer tests are not supported by iOS test targets.
TFL_DISABLED_SANITIZER_TAGS = [
"noasan",
"nomsan",
"notsan",
]
objc_library(
name = "MPPTextClassifierObjcTestLibrary",
testonly = 1,