We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 362357f commit 09547c1Copy full SHA for 09547c1
dist/BUILD.bazel
@@ -107,3 +107,19 @@ py_binary(
107
main = "dist.py",
108
target_compatible_with = require_no_config("//:fuzzer_build"),
109
)
110
+
111
+py_binary(
112
+ name = "dist_client_libs_only",
113
+ srcs = ["dist.py"],
114
+ args = [
115
+ "--_lib_files $(locations :lib)",
116
+ "--_alsa_lib_files $(locations :alsa_lib)",
117
+ "--",
118
+ ],
119
+ data = [
120
+ ":alsa_lib",
121
+ ":lib",
122
123
+ main = "dist.py",
124
+ target_compatible_with = require_no_config("//:fuzzer_build"),
125
+)
0 commit comments