xref: /aosp_15_r20/external/bazelbuild-remote-apis/build/bazel/remote/execution/v2/BUILD (revision ae21b2b400d1606a797985382019aea74177085c)
1package(default_visibility = ["//visibility:public"])
2
3load("@rules_proto//proto:defs.bzl", "proto_library")
4
5licenses(["notice"])
6
7proto_library(
8    name = "remote_execution_proto",
9    srcs = ["remote_execution.proto"],
10    deps = [
11        "//build/bazel/semver:semver_proto",
12        "@com_google_protobuf//:any_proto",
13        "@com_google_protobuf//:duration_proto",
14        "@com_google_protobuf//:timestamp_proto",
15        "@com_google_protobuf//:wrappers_proto",
16        "@googleapis//google/api:annotations_proto",
17        "@googleapis//google/api:http_proto",
18        "@googleapis//google/longrunning:operations_proto",
19        "@googleapis//google/rpc:status_proto",
20    ],
21)
22
23alias(
24    name = "remote_execution_java_proto",
25    actual = "//build/bazel/remote/execution/v2/java:remote_execution_java_proto",
26)
27
28alias(
29    name = "remote_execution_cc_proto",
30    actual = "//build/bazel/remote/execution/v2/cc:remote_execution_cc_grpc",
31)
32
33alias(
34    name = "remote_execution_go_proto",
35    actual = "//build/bazel/remote/execution/v2/go:remote_execution_go_proto",
36)
37
38alias(
39    name = "go_default_library",
40    actual = "//build/bazel/remote/execution/v2/go:go_default_library",
41)
42