WORKSPACE 1.84 KB
Newer Older
1 2
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

3 4 5 6 7
# This com_google_protobuf repository is required for proto_library rule.
# It provides the protocol compiler binary (i.e., protoc).
http_archive(
    name = "com_google_protobuf",
    strip_prefix = "protobuf-master",
Feng Xiao's avatar
Feng Xiao committed
8
    urls = ["https://github.com/protocolbuffers/protobuf/archive/master.zip"],
9 10 11 12 13 14 15 16 17
)

# This com_google_protobuf_cc repository is required for cc_proto_library
# rule. It provides protobuf C++ runtime. Note that it actually is the same
# repo as com_google_protobuf but has to be given a different name as
# required by bazel.
http_archive(
    name = "com_google_protobuf_cc",
    strip_prefix = "protobuf-master",
Feng Xiao's avatar
Feng Xiao committed
18
    urls = ["https://github.com/protocolbuffers/protobuf/archive/master.zip"],
19 20 21 22 23 24
)

# Similar to com_google_protobuf_cc but for Java (i.e., java_proto_library).
http_archive(
    name = "com_google_protobuf_java",
    strip_prefix = "protobuf-master",
Feng Xiao's avatar
Feng Xiao committed
25
    urls = ["https://github.com/protocolbuffers/protobuf/archive/master.zip"],
26 27 28 29 30 31 32 33
)

# Similar to com_google_protobuf_cc but for Java lite. If you are building
# for Android, the lite version should be prefered because it has a much
# smaller code size.
http_archive(
    name = "com_google_protobuf_javalite",
    strip_prefix = "protobuf-javalite",
Feng Xiao's avatar
Feng Xiao committed
34
    urls = ["https://github.com/protocolbuffers/protobuf/archive/javalite.zip"],
35
)
36 37 38 39 40 41 42 43

http_archive(
    name = "bazel_skylib",
    sha256 = "bbccf674aa441c266df9894182d80de104cabd19be98be002f6d478aaa31574d",
    strip_prefix = "bazel-skylib-2169ae1c374aab4a09aa90e65efe1a3aad4e279b",
    urls = ["https://github.com/bazelbuild/bazel-skylib/archive/2169ae1c374aab4a09aa90e65efe1a3aad4e279b.tar.gz"],
)

44
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
45

46
protobuf_deps()
47

48
load("@bazel_skylib//lib:versions.bzl", "versions")
49

50
versions.check(minimum_bazel_version = "0.5.4")