Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bazel/envoy_build_system.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ def envoy_extension_package(enabled_default = True, default_visibility = EXTENSI
)

def envoy_mobile_package():
envoy_extension_package()
# Mobile packages should only be visible to other mobile packages, not any other
# parts of the Envoy codebase.
envoy_extension_package(default_visibility = ["//:mobile_library"])
Comment thread
abeyad marked this conversation as resolved.
Outdated

def envoy_contrib_package():
envoy_extension_package(default_visibility = CONTRIB_EXTENSION_PACKAGE_VISIBILITY)
Expand Down