forked from tensorflow/tflite-support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace7.bzl
22 lines (17 loc) · 857 Bytes
/
workspace7.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
Partial workspace defintion for the TFLite Support Library. See WORKSPACE for usage.
"""
load("@robolectric//bazel:robolectric.bzl", "robolectric_repositories")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("//third_party/flatbuffers:workspace.bzl", flatbuffers = "repo")
def tflite_support_workspace7():
"""Partial workspace definition for the TFLite Support Library. See WORKSPACE for usage."""
robolectric_repositories()
flatbuffers()
RULES_JVM_EXTERNAL_TAG = "4.2"
http_archive(
name = "rules_jvm_external",
strip_prefix = "rules_jvm_external-%s" % RULES_JVM_EXTERNAL_TAG,
sha256 = "cd1a77b7b02e8e008439ca76fd34f5b07aecb8c752961f9640dea15e9e5ba1ca",
url = "https://github.com/bazelbuild/rules_jvm_external/archive/refs/tags/%s.zip" % RULES_JVM_EXTERNAL_TAG,
)