workspace(name = "tensorflow_models_seq_flow_lite") load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") load("@//third_party/py:python_configure.bzl", "python_configure") http_archive( name = "io_bazel_rules_closure", sha256 = "5b00383d08dd71f28503736db0500b6fb4dda47489ff5fc6bed42557c07c6ba9", strip_prefix = "rules_closure-308b05b2419edb5c8ee0471b67a40403df940149", urls = [ "https://storage.googleapis.com/mirror.tensorflow.org/github.com/bazelbuild/rules_closure/archive/308b05b2419edb5c8ee0471b67a40403df940149.tar.gz", "https://github.com/bazelbuild/rules_closure/archive/308b05b2419edb5c8ee0471b67a40403df940149.tar.gz", # 2019-06-13 ], ) http_archive( name = "org_tensorflow", sha256 = "40d3203ab5f246d83bae328288a24209a2b85794f1b3e2cd0329458d8e7c1985", strip_prefix = "tensorflow-2.6.0", urls = [ "https://github.com/tensorflow/tensorflow/archive/v2.6.0.zip", ], ) http_archive( name = "org_tflite_support", strip_prefix = "tflite-support-0861599711ef31de58f62ed3ff6bbcc1e4817ef6", sha256 = "ef5e33d00930f3b0bad843d550476049faa3c77ca598dbb94acf81d01ba8badd", urls = ["https://github.com/tensorflow/tflite-support/archive/0861599711ef31de58f62ed3ff6bbcc1e4817ef6.zip"], ) http_archive( name = "org_tensorflow_text", sha256 = "f64647276f7288d1b1fe4c89581d51404d0ce4ae97f2bcc4c19bd667549adca8", strip_prefix = "text-2.2.0", urls = [ "https://github.com/tensorflow/text/archive/v2.2.0.zip", ], patches = ["@//third_party:tensorflow_text_fix_local_config_tf.patch"], patch_args = ["-p1"], repo_mapping = {"@com_google_re2": "@com_googlesource_code_re2"}, ) load("//tf_ops:repo.bzl", "cc_tf_configure", "reverb_protoc_deps") cc_tf_configure() PROTOC_VERSION = "3.9.0" PROTOC_SHA256 = "15e395b648a1a6dda8fd66868824a396e9d3e89bc2c8648e3b9ab9801bea5d55" reverb_protoc_deps(version = PROTOC_VERSION, sha256 = PROTOC_SHA256) # glog http_archive( name = "com_google_glog", sha256 = "f28359aeba12f30d73d9e4711ef356dc842886968112162bc73002645139c39c", strip_prefix = "glog-0.4.0", urls = ["https://github.com/google/glog/archive/v0.4.0.tar.gz"], ) http_archive( name = "utf_archive", build_file = "@//third_party:utf.BUILD", sha256 = "262a902f622dcd28e05b8a4be10da0aa3899050d0be8f4a71780eed6b2ea65ca", urls = [ "https://mirror.bazel.build/9fans.github.io/plan9port/unix/libutf.tgz", "https://9fans.github.io/plan9port/unix/libutf.tgz", ], ) load("@org_tensorflow//tensorflow:workspace3.bzl", "tf_workspace3") tf_workspace3() load("@org_tensorflow//tensorflow:workspace2.bzl", "tf_workspace2") tf_workspace2() load("@org_tensorflow//tensorflow:workspace1.bzl", "tf_workspace1") tf_workspace1() load("@org_tensorflow//tensorflow:workspace0.bzl", "tf_workspace0") tf_workspace0() # TF submodule compilation doesn't take care of grpc deps. Do it manually here. load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps") grpc_deps() load( "@build_bazel_rules_apple//apple:repositories.bzl", "apple_rules_dependencies", ) apple_rules_dependencies() load( "@build_bazel_apple_support//lib:repositories.bzl", "apple_support_dependencies", ) apple_support_dependencies() load("@upb//bazel:repository_defs.bzl", "bazel_version_repository") bazel_version_repository(name = "bazel_version") # Set up Android. load("//third_party/android:android_configure.bzl", "android_configure") android_configure(name="local_config_android") load("@local_config_android//:android.bzl", "android_workspace") android_workspace() python_configure(name = "local_config_python") new_git_repository( name = "icu4c", tag = "release-66-1", remote = "https://github.com/unicode-org/icu", build_file = "@//third_party:icu.BUILD", patch_cmds = [ "find . -type f -exec sed -i 's/#\\s*include \"unicode/#include \"icu4c\\/source\\/common\\/unicode/g' {} \\;", ], ) http_archive( name = "farmhash_archive", build_file = "//third_party:farmhash.BUILD", sha256 = "6560547c63e4af82b0f202cb710ceabb3f21347a4b996db565a411da5b17aba0", # SHARED_FARMHASH_SHA strip_prefix = "farmhash-816a4ae622e964763ca0862d9dbd19324a1eaf45", urls = [ "https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/farmhash/archive/816a4ae622e964763ca0862d9dbd19324a1eaf45.tar.gz", "https://github.com/google/farmhash/archive/816a4ae622e964763ca0862d9dbd19324a1eaf45.tar.gz", ], )