| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 | workspace(name = "com_google_protobuf")load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")new_local_repository(    name = "submodule_gmock",    build_file = "@//:third_party/googletest/BUILD.bazel",    path = "third_party/googletest",)http_archive(    name = "six_archive",    build_file = "@//:six.BUILD",    sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a",    urls = ["https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz#md5=34eed507548117b2ab523ab14b2f8b55"],)http_archive(    name = "bazel_skylib",    sha256 = "bbccf674aa441c266df9894182d80de104cabd19be98be002f6d478aaa31574d",    strip_prefix = "bazel-skylib-2169ae1c374aab4a09aa90e65efe1a3aad4e279b",    urls = ["https://github.com/bazelbuild/bazel-skylib/archive/2169ae1c374aab4a09aa90e65efe1a3aad4e279b.tar.gz"],)http_archive(    name = "net_zlib",    build_file = "//:third_party/zlib.BUILD",    sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1",    strip_prefix = "zlib-1.2.11",    urls = ["https://zlib.net/zlib-1.2.11.tar.gz"],)bind(    name = "python_headers",    actual = "//util/python:python_headers",)bind(    name = "gtest",    actual = "@submodule_gmock//:gtest",)bind(    name = "gtest_main",    actual = "@submodule_gmock//:gtest_main",)bind(    name = "six",    actual = "@six_archive//:six",)maven_jar(    name = "guava_maven",    artifact = "com.google.guava:guava:18.0",)bind(    name = "guava",    actual = "@guava_maven//jar",)maven_jar(    name = "gson_maven",    artifact = "com.google.code.gson:gson:2.7",)bind(    name = "gson",    actual = "@gson_maven//jar",)bind(    name = "zlib",    actual = "@net_zlib//:zlib",)
 |