-
Notifications
You must be signed in to change notification settings - Fork 128
/
workspace2.bzl
29 lines (24 loc) · 1.17 KB
/
workspace2.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""
Partial workspace defintion for the TFLite Support Library. See WORKSPACE for usage.
"""
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@build_bazel_apple_support//lib:repositories.bzl", "apple_support_dependencies")
load("@build_bazel_rules_apple//apple:repositories.bzl", "apple_rules_dependencies")
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
load("@upb//bazel:repository_defs.bzl", "bazel_version_repository")
load("//third_party/py:python_configure.bzl", "python_configure")
load("//third_party/tensorflow:tf_configure.bzl", "tf_configure")
def tflite_support_workspace2():
"""Partial workspace definition for the TFLite Support Library. See WORKSPACE for usage."""
tf_configure(name = "local_config_tf")
grpc_deps()
apple_rules_dependencies()
apple_support_dependencies()
bazel_version_repository(name = "bazel_version")
python_configure(name = "local_config_python")
ATS_TAG = "androidx-test-1.3.0"
http_archive(
name = "android_test_support",
strip_prefix = "android-test-%s" % ATS_TAG,
urls = ["https://github.com/android/android-test/archive/%s.tar.gz" % ATS_TAG],
)