Skip to content

Commit d78ca71

Browse files
committed
fix: add public visibility to http_service_lib for testing
Resolves CI build failure where test //test/cpp:test_http_service_library could not access //examples/cpp_component/http_service:http_service_lib due to missing visibility declaration.
1 parent dab1d46 commit d78ca71

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

examples/cpp_component/http_service/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ cc_component_library(
2525
"c",
2626
], # Force compilation as C, not C++
2727
target_compatible_with = ["@platforms//cpu:wasm32"],
28+
visibility = ["//visibility:public"],
2829
)
2930

3031
# Main HTTP service component (C implementation) - all sources combined

0 commit comments

Comments
 (0)