Skip to content

Commit 2069662

Browse files
bgogularcs-c3po
authored andcommitted
Move kt_jvm_proto_library and kt_jvm_lite_proto_library to be in the same directory as the corresponding proto.
PiperOrigin-RevId: 720200330
1 parent 85ff04e commit 2069662

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/frontends/sql/BUILD

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ load(
2020
"proto_library",
2121
"raksha_cc_proto_library",
2222
)
23+
load(
24+
"//third_party/protobuf/build_defs:kt_jvm_proto_library.bzl",
25+
"kt_jvm_lite_proto_library",
26+
"kt_jvm_proto_library",
27+
)
2328

2429
package(
2530
features = ["layering_check"],
@@ -46,6 +51,22 @@ raksha_cc_proto_library(
4651
],
4752
)
4853

54+
kt_jvm_proto_library(
55+
name = "sql_ir_kt_proto",
56+
visibility = [
57+
"//:__pkg__",
58+
],
59+
deps = [":sql_ir_proto"],
60+
)
61+
62+
kt_jvm_lite_proto_library(
63+
name = "sql_ir_kt_proto_lite",
64+
visibility = [
65+
"//:__pkg__",
66+
],
67+
deps = [":sql_ir_proto"],
68+
)
69+
4970
cc_library(
5071
name = "decoder_context",
5172
srcs = ["decoder_context.cc"],

0 commit comments

Comments
 (0)