123456789101112131415161718192021222324252627282930 |
- load("//bazel:api_build_system.bzl", "xds_cc_test", "xds_go_test")
- licenses(["notice"]) # Apache 2
- xds_cc_test(
- name = "build_test",
- srcs = ["build_test.cc"],
- deps = [
- "//xds/service/orca/v3:pkg_cc_proto",
- # Old names for backward compatibility.
- # TODO(roth): Remove once all callers are updated to use the new names.
- "//udpa/service/orca/v1:pkg_cc_proto",
- ],
- )
- xds_go_test(
- name = "go_build_test",
- srcs = ["go_build_test.go"],
- importpath = "go_build_test",
- deps = [
- "//xds/data/orca/v3:pkg_go_proto",
- "//xds/service/orca/v3:pkg_go_proto",
- "//xds/type/v3:pkg_go_proto",
- # Old names for backward compatibility.
- # TODO(roth): Remove once all callers are updated to use the new names.
- "//udpa/data/orca/v1:pkg_go_proto",
- "//udpa/service/orca/v1:pkg_go_proto",
- "//udpa/type/v1:pkg_go_proto",
- ],
- )
|