We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 85869b2 + 7ec5936 commit 6f419deCopy full SHA for 6f419de
pdk/proto/BUILD
@@ -12,12 +12,29 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
+load("@rules_python//python:proto.bzl", "py_proto_library")
16
+
17
package(
18
default_applicable_licenses = ["//:package_license"],
- default_visibility = ["//visibility:private"],
19
+ default_visibility = ["//visibility:public"],
20
)
21
22
exports_files([
23
"build_defs.bzl",
24
"pdk_info.proto",
25
])
26
27
+proto_library(
28
+ name = "pdk_info_proto",
29
+ srcs = ["pdk_info.proto"],
30
+)
31
32
+cc_proto_library(
33
+ name = "pdk_info_cc_proto",
34
+ deps = [":pdk_info_proto"],
35
36
37
+py_proto_library(
38
+ name = "pdk_info_py_proto",
39
40
0 commit comments