You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1021 B
36 lines
1021 B
8 years ago
|
def api_dependencies():
|
||
|
native.new_git_repository(
|
||
|
name = "googleapis",
|
||
|
# Head of master at 5/14.
|
||
|
commit = "5c6df0cd18c6a429eab739fb711c27f6e1393366",
|
||
|
remote = "https://github.com/googleapis/googleapis.git",
|
||
|
build_file_content = """
|
||
|
load("@protobuf_bzl//:protobuf.bzl", "cc_proto_library", "py_proto_library")
|
||
|
|
||
|
cc_proto_library(
|
||
|
name = "http_api_protos",
|
||
|
srcs = [
|
||
|
"google/api/annotations.proto",
|
||
|
"google/api/http.proto",
|
||
|
],
|
||
|
default_runtime = "//external:protobuf",
|
||
|
protoc = "//external:protoc",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["@protobuf_bzl//:cc_wkt_protos"],
|
||
|
)
|
||
|
|
||
|
py_proto_library(
|
||
|
name = "http_api_protos_py",
|
||
|
srcs = [
|
||
|
"google/api/annotations.proto",
|
||
|
"google/api/http.proto",
|
||
|
],
|
||
|
include = ".",
|
||
|
default_runtime = "//external:protobuf_python",
|
||
|
protoc = "//external:protoc",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["//external:protobuf_python"],
|
||
|
)
|
||
|
""",
|
||
|
)
|