From e4c38defbbf34dfff2dc448dc58e93a9733ae8b1 Mon Sep 17 00:00:00 2001 From: Sokwhan Huh Date: Fri, 22 May 2026 10:58:39 -0700 Subject: [PATCH] Add export_files to test policies PiperOrigin-RevId: 919760588 --- conformance/BUILD.bazel | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/conformance/BUILD.bazel b/conformance/BUILD.bazel index 631c974..e212464 100644 --- a/conformance/BUILD.bazel +++ b/conformance/BUILD.bazel @@ -10,3 +10,13 @@ filegroup( "//visibility:public", ], ) + +exports_files( + srcs = glob([ + "testdata/**/*.yaml", + "testdata/**/*.textproto", + ]), + visibility = [ + "//visibility:public", + ], +)