BUILD 929 B

123456789101112131415161718192021222324252627282930
  1. load("//bazel:api_build_system.bzl", "xds_cc_test", "xds_go_test")
  2. licenses(["notice"]) # Apache 2
  3. xds_cc_test(
  4. name = "build_test",
  5. srcs = ["build_test.cc"],
  6. deps = [
  7. "//xds/service/orca/v3:pkg_cc_proto",
  8. # Old names for backward compatibility.
  9. # TODO(roth): Remove once all callers are updated to use the new names.
  10. "//udpa/service/orca/v1:pkg_cc_proto",
  11. ],
  12. )
  13. xds_go_test(
  14. name = "go_build_test",
  15. srcs = ["go_build_test.go"],
  16. importpath = "go_build_test",
  17. deps = [
  18. "//xds/data/orca/v3:pkg_go_proto",
  19. "//xds/service/orca/v3:pkg_go_proto",
  20. "//xds/type/v3:pkg_go_proto",
  21. # Old names for backward compatibility.
  22. # TODO(roth): Remove once all callers are updated to use the new names.
  23. "//udpa/data/orca/v1:pkg_go_proto",
  24. "//udpa/service/orca/v1:pkg_go_proto",
  25. "//udpa/type/v1:pkg_go_proto",
  26. ],
  27. )