workspace(name = "org_tensorflow") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file") http_archive( name = "io_bazel_rules_closure", sha256 = "43c9b882fa921923bcba764453f4058d102bece35a37c9f6383c713004aacff1", strip_prefix = "rules_closure-9889e2348259a5aad7e805547c1a0cf311cfcd91", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_closure/archive/9889e2348259a5aad7e805547c1a0cf311cfcd91.tar.gz", "https://github.com/bazelbuild/rules_closure/archive/9889e2348259a5aad7e805547c1a0cf311cfcd91.tar.gz", # 2018-12-21 ], ) load("@io_bazel_rules_closure//closure:defs.bzl", "closure_repositories") closure_repositories() load("//third_party/toolchains/preconfig/generate:archives.bzl", "bazel_toolchains_archive") bazel_toolchains_archive() load( "@bazel_toolchains//repositories:repositories.bzl", bazel_toolchains_repositories = "repositories", ) bazel_toolchains_repositories() load( "@io_bazel_rules_docker//repositories:repositories.bzl", container_repositories = "repositories", ) container_repositories() load("//third_party/toolchains/preconfig/generate:workspace.bzl", "remote_config_workspace") remote_config_workspace() # Apple and Swift rules. http_archive( name = "build_bazel_rules_apple", sha256 = "4b90786009fa8df25230442244bad2832ba8d6bc4987f68150a7de59c8827e90", strip_prefix = "rules_apple-0.14.0", urls = ["https://github.com/bazelbuild/rules_apple/archive/0.14.0.tar.gz"], ) http_file( name = "xctestrunner", executable = 1, urls = ["https://github.com/google/xctestrunner/releases/download/0.2.6/ios_test_runner.par"], ) http_archive( name = "bazel_skylib", sha256 = "2c62d8cd4ab1e65c08647eb4afe38f51591f43f7f0885e7769832fa137633dcb", strip_prefix = "bazel-skylib-0.7.0", urls = ["https://github.com/bazelbuild/bazel-skylib/archive/0.7.0.tar.gz"], ) http_archive( name = "build_bazel_apple_support", sha256 = "835663c4bb02f4bf01dce8a2a176df7fa682dbb867d3698ae12258c1628bb8f0", strip_prefix = "apple_support-0.5.0", urls = ["https://github.com/bazelbuild/apple_support/archive/0.5.0.tar.gz"], ) http_archive( name = "build_bazel_rules_swift", sha256 = "32d124878cd49775d84f59ba90440c8b23b7c775aec8fec1978f751c76ddee8a", strip_prefix = "rules_swift-0.7.0", urls = ["https://github.com/bazelbuild/rules_swift/archive/0.7.0.tar.gz"], ) http_archive( name = "com_github_apple_swift_swift_protobuf", type = "zip", strip_prefix = "swift-protobuf-1.2.0/", urls = ["https://github.com/apple/swift-protobuf/archive/1.2.0.zip"], ) # Use swift_rules_dependencies to fetch the tolchains. # Since we defined all the "git_repository" rules above, the following call will # skip redefining them. load("@build_bazel_rules_swift//swift:repositories.bzl", "swift_rules_dependencies") swift_rules_dependencies() # We must check the bazel version before trying to parse any other BUILD # files, in case the parsing of those build files depends on the bazel # version we require here. load("//tensorflow:version_check.bzl", "check_bazel_version_at_least") check_bazel_version_at_least("0.19.0") load("//tensorflow:workspace.bzl", "tf_workspace") 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() # Please add all new TensorFlow dependencies in workspace.bzl. tf_workspace() http_archive( name = "inception_v1", build_file = "//:models.BUILD", sha256 = "7efe12a8363f09bc24d7b7a450304a15655a57a7751929b2c1593a71183bb105", urls = [ "http://storage.googleapis.com/download.tensorflow.org/models/inception_v1.zip", "http://download.tensorflow.org/models/inception_v1.zip", ], ) http_archive( name = "mobile_ssd", build_file = "//:models.BUILD", sha256 = "bddd81ea5c80a97adfac1c9f770e6f55cbafd7cce4d3bbe15fbeb041e6b8f3e8", urls = [ "http://storage.googleapis.com/download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_android_export.zip", "http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_android_export.zip", ], ) http_archive( name = "mobile_multibox", build_file = "//:models.BUILD", sha256 = "859edcddf84dddb974c36c36cfc1f74555148e9c9213dedacf1d6b613ad52b96", urls = [ "http://storage.googleapis.com/download.tensorflow.org/models/mobile_multibox_v1a.zip", "http://download.tensorflow.org/models/mobile_multibox_v1a.zip", ], ) http_archive( name = "stylize", build_file = "//:models.BUILD", sha256 = "3d374a730aef330424a356a8d4f04d8a54277c425e274ecb7d9c83aa912c6bfa", urls = [ "http://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip", "http://download.tensorflow.org/models/stylize_v1.zip", ], ) http_archive( name = "speech_commands", build_file = "//:models.BUILD", sha256 = "c3ec4fea3158eb111f1d932336351edfe8bd515bb6e87aad4f25dbad0a600d0c", urls = [ "http://storage.googleapis.com/download.tensorflow.org/models/speech_commands_v0.01.zip", "http://download.tensorflow.org/models/speech_commands_v0.01.zip", ], )