Internal change.

PiperOrigin-RevId: 243699430
This commit is contained in:
A. Unique TensorFlower 2019-04-15 15:22:46 -07:00 committed by TensorFlower Gardener
parent 5bc9942fac
commit 554caf4863
2 changed files with 8 additions and 3 deletions

View File

@ -4,14 +4,13 @@ package(default_visibility = ["//visibility:private"])
licenses(["notice"]) # Apache 2.0
load("//tensorflow/lite/experimental/ios:ios.bzl", "TFL_MINIMUM_OS_VERSION")
load("//tensorflow/lite/experimental/ios:ios.bzl", "TFL_IOS_BUILD_VERSION", "TFL_MINIMUM_OS_VERSION")
load("@build_bazel_rules_apple//apple:ios.bzl", "ios_static_framework")
load("@build_bazel_rules_apple//apple:versioning.bzl", "apple_bundle_version")
apple_bundle_version(
name = "TensorFlowLiteC_version",
build_version = "0.1.0",
short_version_string = "0.1",
build_version = TFL_IOS_BUILD_VERSION,
)
# Build the framework:

View File

@ -1,5 +1,11 @@
"""TensorFlow Lite Build Configurations for iOS"""
# Current version of the TensorFlow Lite iOS libraries.
TFL_IOS_BUILD_VERSION = "0.1.0"
# Git commit that was used to build the TensorFlow Lite iOS libraries. See Swift and ObjC podspecs.
TFL_IOS_GIT_COMMIT = "2b96dde"
TFL_MINIMUM_OS_VERSION = "9.0"
# Default tags for filtering iOS targets. Targets are restricted to Apple platforms.