mirror of https://github.com/cncf/xds.git
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.
30 lines
929 B
30 lines
929 B
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", |
|
], |
|
)
|
|
|