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.
46 lines
1.3 KiB
46 lines
1.3 KiB
GOOGLEAPIS_SHA = "5c6df0cd18c6a429eab739fb711c27f6e1393366" # May 14, 2017 |
|
|
|
def api_dependencies(): |
|
native.new_http_archive( |
|
name = "googleapis", |
|
strip_prefix = "googleapis-" + GOOGLEAPIS_SHA, |
|
url = "https://github.com/googleapis/googleapis/archive/" + GOOGLEAPIS_SHA + ".tar.gz", |
|
build_file_content = """ |
|
load("@com_google_protobuf//:protobuf.bzl", "py_proto_library") |
|
|
|
filegroup( |
|
name = "http_api_protos_src", |
|
srcs = [ |
|
"google/api/annotations.proto", |
|
"google/api/http.proto", |
|
], |
|
visibility = ["//visibility:public"], |
|
) |
|
|
|
proto_library( |
|
name = "http_api_protos_lib", |
|
srcs = [":http_api_protos_src"], |
|
deps = ["@com_google_protobuf//:descriptor_proto"], |
|
visibility = ["//visibility:public"], |
|
) |
|
|
|
cc_proto_library( |
|
name = "http_api_protos", |
|
deps = [":http_api_protos_lib"], |
|
visibility = ["//visibility:public"], |
|
) |
|
|
|
py_proto_library( |
|
name = "http_api_protos_py", |
|
srcs = [ |
|
"google/api/annotations.proto", |
|
"google/api/http.proto", |
|
], |
|
include = ".", |
|
default_runtime = "@com_google_protobuf//:protobuf_python", |
|
protoc = "@com_google_protobuf//:protoc", |
|
visibility = ["//visibility:public"], |
|
deps = ["@com_google_protobuf//:protobuf_python"], |
|
) |
|
""", |
|
)
|
|
|