726b4cc796
* stable-2.16: Load proto_library from @rules_proto//proto:defs.bzl Update git submodules Bazel: Add fixes for --incompatible_load_{java|python}_rules_from_bzl Bazel: Bump minimum supported version to 0.29.0 Lucene index configuration and docs. Change-Id: I401c192096047dd5069be37f17c4a62a8ed3afb7
25 lines
517 B
Python
25 lines
517 B
Python
load("@rules_java//java:defs.bzl", "java_proto_library")
|
|
load("@rules_proto//proto:defs.bzl", "proto_library")
|
|
|
|
proto_library(
|
|
name = "cache_proto",
|
|
srcs = ["cache.proto"],
|
|
)
|
|
|
|
java_proto_library(
|
|
name = "cache_java_proto",
|
|
visibility = ["//visibility:public"],
|
|
deps = [":cache_proto"],
|
|
)
|
|
|
|
proto_library(
|
|
name = "entities_proto",
|
|
srcs = ["entities.proto"],
|
|
)
|
|
|
|
java_proto_library(
|
|
name = "entities_java_proto",
|
|
visibility = ["//visibility:public"],
|
|
deps = [":entities_proto"],
|
|
)
|