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 = "fc6d7c57cd9427e695a38ad00fb6ecc3f623bac792dd44ad73a3f85b338b68be", strip_prefix = "tensorflow-8a4ffe2e1ae722cff5306778df0cfca8b7f503fe", urls = [ "https://github.com/tensorflow/tensorflow/archive/8a4ffe2e1ae722cff5306778df0cfca8b7f503fe.tar.gz", ], ) 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) # ABSL cpp library. http_archive( name = "com_google_absl", sha256 = "f368a8476f4e2e0eccf8a7318b98dafbe30b2600f4e3cf52636e5eb145aba06a", # SHARED_ABSL_SHA strip_prefix = "abseil-cpp-df3ea785d8c30a9503321a3d35ee7d35808f190d", urls = [ "https://storage.googleapis.com/mirror.tensorflow.org/github.com/abseil/abseil-cpp/archive/df3ea785d8c30a9503321a3d35ee7d35808f190d.tar.gz", "https://github.com/abseil/abseil-cpp/archive/df3ea785d8c30a9503321a3d35ee7d35808f190d.tar.gz", ], ) http_archive( name = "rules_cc", strip_prefix = "rules_cc-master", urls = ["https://github.com/bazelbuild/rules_cc/archive/master.zip"], ) # GoogleTest/GoogleMock framework. Used by most unit-tests. http_archive( name = "com_google_googletest", urls = ["https://github.com/google/googletest/archive/master.zip"], strip_prefix = "googletest-master", ) # gflags needed by glog http_archive( name = "com_github_gflags_gflags", sha256 = "6e16c8bc91b1310a44f3965e616383dbda48f83e8c1eaa2370a215057b00cabe", strip_prefix = "gflags-77592648e3f3be87d6c7123eb81cbad75f9aef5a", urls = [ "https://mirror.bazel.build/github.com/gflags/gflags/archive/77592648e3f3be87d6c7123eb81cbad75f9aef5a.tar.gz", "https://github.com/gflags/gflags/archive/77592648e3f3be87d6c7123eb81cbad75f9aef5a.tar.gz", ], ) # 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 = "absl_py", sha256 = "603febc9b95a8f2979a7bdb77d2f5e4d9b30d4e0d59579f88eba67d4e4cc5462", strip_prefix = "abseil-py-pypi-v0.9.0", urls = [ "https://storage.googleapis.com/mirror.tensorflow.org/github.com/abseil/abseil-py/archive/pypi-v0.9.0.tar.gz", "https://github.com/abseil/abseil-py/archive/pypi-v0.9.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", ], ) #----------------------------------------------------------------------------- # proto #----------------------------------------------------------------------------- # proto_library, cc_proto_library and java_proto_library rules implicitly depend # on @com_google_protobuf//:proto, @com_google_protobuf//:cc_toolchain and # @com_google_protobuf//:java_toolchain, respectively. # This statement defines the @com_google_protobuf repo. http_archive( name = "com_google_protobuf", strip_prefix = "protobuf-3.8.0", urls = ["https://github.com/google/protobuf/archive/v3.8.0.zip"], sha256 = "1e622ce4b84b88b6d2cdf1db38d1a634fe2392d74f0b7b74ff98f3a51838ee53", ) load("//third_party/flatbuffers:workspace.bzl", flatbuffers = "repo") flatbuffers() load("@org_tensorflow//tensorflow:workspace.bzl", "tf_workspace") tf_workspace(tf_repo_name = "org_tensorflow") # 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", ], )