blob: daca02f49bab14f5063641a5e2d894d45b3988fd [file] [log] [blame]
Joshua Haberman823eb092021-04-05 12:26:41 -07001# Copyright (c) 2009-2021, Google LLC
Joshua Habermane59d2c82021-04-05 10:47:53 -07002# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are met:
6# * Redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer.
8# * Redistributions in binary form must reproduce the above copyright
9# notice, this list of conditions and the following disclaimer in the
10# documentation and/or other materials provided with the distribution.
11# * Neither the name of Google LLC nor the
12# names of its contributors may be used to endorse or promote products
13# derived from this software without specific prior written permission.
14#
15# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18# DISCLAIMED. IN NO EVENT SHALL Google LLC BE LIABLE FOR ANY
19# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
Josh Haberman2655ed92018-11-03 13:04:10 -070026load(
Joshua Haberman5611ff22019-05-16 11:35:00 -070027 "//bazel:build_defs.bzl",
Joshua Habermane3f41de2020-10-17 13:15:58 -070028 "UPB_DEFAULT_COPTS",
Joshua Haberman11b6df02022-02-15 19:55:44 -080029 "UPB_DEFAULT_CPPOPTS",
30 "make_shell_script",
Joshua Haberman2c166492020-10-17 15:49:11 -070031 "upb_amalgamation", # copybara:strip_for_google3
Joshua Haberman06b90f92019-05-14 15:58:58 -070032)
Joshua Haberman06b90f92019-05-14 15:58:58 -070033load(
Joshua Haberman5611ff22019-05-16 11:35:00 -070034 "//bazel:upb_proto_library.bzl",
Joshua Habermana345af92020-10-18 13:39:13 -070035 "upb_fasttable_enabled",
Josh Habermana7ebe542018-11-03 18:18:47 -070036 "upb_proto_library",
Joshua Habermana274ad72020-10-28 13:06:30 -070037 "upb_proto_library_copts",
Joshua Habermane8f9eac2020-10-28 22:50:03 -070038 "upb_proto_reflection_library",
Josh Haberman2655ed92018-11-03 13:04:10 -070039)
Joshua Haberman0dc23942020-06-05 09:17:33 -070040
Joshua Haberman83c0edb2021-02-28 16:56:49 -080041licenses(["notice"])
Joshua Haberman7f9f7222019-01-23 17:10:22 -080042
43exports_files([
44 "LICENSE",
45 "build_defs",
46])
47
Joshua Haberman00f96cb2019-03-27 12:13:59 -070048config_setting(
Nicolas "Pixel" Noblece3ba4d2019-07-18 01:12:00 +020049 name = "windows",
50 constraint_values = ["@bazel_tools//platforms:windows"],
Eli Schleifer231daa32021-12-20 16:01:23 -080051 visibility = ["//visibility:public"],
Nicolas "Pixel" Noblece3ba4d2019-07-18 01:12:00 +020052)
53
Joshua Habermana345af92020-10-18 13:39:13 -070054upb_fasttable_enabled(
55 name = "fasttable_enabled",
Joshua Habermanb9286962020-10-26 21:23:16 -070056 build_setting_default = False,
Joshua Habermana345af92020-10-18 13:39:13 -070057 visibility = ["//visibility:public"],
58)
59
Joshua Habermane8f9eac2020-10-28 22:50:03 -070060config_setting(
61 name = "fasttable_enabled_setting",
62 flag_values = {"//:fasttable_enabled": "true"},
63)
64
Joshua Habermana274ad72020-10-28 13:06:30 -070065upb_proto_library_copts(
66 name = "upb_proto_library_copts__for_generated_code_only_do_not_use",
67 copts = UPB_DEFAULT_COPTS,
68 visibility = ["//visibility:public"],
69)
70
Joshua Haberman928ef7f2019-03-27 12:52:33 -070071# Public C/C++ libraries #######################################################
Josh Haberman01ed4ce2018-11-02 12:49:15 -070072
73cc_library(
Anna Rde1bc112020-01-07 15:45:19 -080074 name = "port",
Joshua Haberman558315a2020-10-28 17:13:13 -070075 copts = UPB_DEFAULT_COPTS,
Anna Rde1bc112020-01-07 15:45:19 -080076 textual_hdrs = [
77 "upb/port_def.inc",
78 "upb/port_undef.inc",
79 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -070080 visibility = ["//tests:__pkg__"],
Anna Rde1bc112020-01-07 15:45:19 -080081)
82
83cc_library(
Josh Haberman01ed4ce2018-11-02 12:49:15 -070084 name = "upb",
85 srcs = [
Josh Haberman01ed4ce2018-11-02 12:49:15 -070086 "upb/decode.c",
Joshua Haberman38813932021-04-05 16:00:25 -070087 "upb/decode_internal.h",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070088 "upb/encode.c",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070089 "upb/msg.c",
Joshua Haberman38813932021-04-05 16:00:25 -070090 "upb/msg_internal.h",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070091 "upb/table.c",
Joshua Haberman38813932021-04-05 16:00:25 -070092 "upb/table_internal.h",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070093 "upb/upb.c",
Joshua Haberman38813932021-04-05 16:00:25 -070094 "upb/upb_internal.h",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070095 ],
96 hdrs = [
Josh Haberman01ed4ce2018-11-02 12:49:15 -070097 "upb/decode.h",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070098 "upb/encode.h",
Joshua Haberman1674f282021-04-04 18:43:24 -070099 "upb/msg.h",
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700100 "upb/upb.h",
Joshua Haberman2559e782020-04-09 14:36:24 -0700101 "upb/upb.hpp",
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700102 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700103 copts = UPB_DEFAULT_COPTS,
Joshua Habermanba29af32019-06-01 19:27:49 -0700104 visibility = ["//visibility:public"],
Joshua Habermanefd576b2020-10-26 21:37:17 -0700105 deps = [
106 ":fastdecode",
107 ":port",
Joshua Haberman4307f5d2021-10-11 23:02:32 -0700108 "//third_party/utf8_range",
Joshua Habermanefd576b2020-10-26 21:37:17 -0700109 ],
Joshua Habermancb234e62020-10-17 17:48:32 -0700110)
111
112cc_library(
113 name = "fastdecode",
114 srcs = [
Joshua Haberman3d437bb2021-10-13 09:53:36 -0700115 "upb/decode.h",
Joshua Habermancb234e62020-10-17 17:48:32 -0700116 "upb/decode_fast.c",
117 "upb/decode_fast.h",
Matt Kulukundis61b09052022-02-19 19:35:58 -0500118 "upb/decode_internal.h",
Joshua Habermancb234e62020-10-17 17:48:32 -0700119 "upb/msg.h",
Joshua Haberman38813932021-04-05 16:00:25 -0700120 "upb/msg_internal.h",
121 "upb/upb_internal.h",
Joshua Habermancb234e62020-10-17 17:48:32 -0700122 ],
Joshua Habermane86541a2020-10-28 17:53:09 -0700123 copts = UPB_DEFAULT_COPTS,
Joshua Habermanefd576b2020-10-26 21:37:17 -0700124 deps = [
125 ":port",
126 ":table",
Joshua Haberman4307f5d2021-10-11 23:02:32 -0700127 "//third_party/utf8_range",
Joshua Habermanefd576b2020-10-26 21:37:17 -0700128 ],
Joshua Habermanba29af32019-06-01 19:27:49 -0700129)
130
131# Common support routines used by generated code. This library has no
132# implementation, but depends on :upb and exposes a few more hdrs.
133#
134# This is public only because we have no way of visibility-limiting it to
135# upb_proto_library() only. This interface is not stable and by using it you
136# give up any backward compatibility guarantees.
137cc_library(
138 name = "generated_code_support__only_for_generated_code_do_not_use__i_give_permission_to_break_me",
Joshua Habermanba29af32019-06-01 19:27:49 -0700139 hdrs = [
Joshua Habermanaec762e2020-10-11 23:14:50 -0700140 "upb/decode_fast.h",
Joshua Habermanba29af32019-06-01 19:27:49 -0700141 "upb/msg.h",
Joshua Haberman42bdfcb2021-04-06 09:25:28 -0700142 "upb/msg_internal.h",
Anna Ra27429f2020-01-09 14:50:03 -0800143 "upb/port_def.inc",
144 "upb/port_undef.inc",
Joshua Habermanba29af32019-06-01 19:27:49 -0700145 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700146 copts = UPB_DEFAULT_COPTS,
Vishal Powar7031f772018-11-28 15:32:16 -0800147 visibility = ["//visibility:public"],
Anna Rde1bc112020-01-07 15:45:19 -0800148 deps = [
Joshua Haberman4b8c04e2020-02-18 16:50:25 -0800149 ":table",
Anna Rde1bc112020-01-07 15:45:19 -0800150 ":upb",
151 ],
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700152)
153
Josh Habermancd9e1e62019-04-17 15:23:00 -0700154upb_proto_library(
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700155 name = "descriptor_upb_proto",
156 visibility = ["//visibility:public"],
157 deps = ["@com_google_protobuf//:descriptor_proto"],
158)
159
160upb_proto_reflection_library(
161 name = "descriptor_upb_proto_reflection",
Joshua Habermanc58541e2019-05-15 09:49:29 -0700162 visibility = ["//visibility:public"],
Google-Autofuzz8f196672019-06-25 20:14:14 -0400163 deps = ["@com_google_protobuf//:descriptor_proto"],
Josh Habermancd9e1e62019-04-17 15:23:00 -0700164)
165
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700166cc_library(
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700167 name = "reflection",
168 srcs = [
169 "upb/def.c",
Joshua Haberman58010a32020-02-18 16:53:21 -0800170 "upb/msg.h",
Joshua Haberman9a360ad2019-11-12 08:08:46 -0800171 "upb/reflection.c",
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700172 ],
173 hdrs = [
174 "upb/def.h",
Joshua Haberman2559e782020-04-09 14:36:24 -0700175 "upb/def.hpp",
Joshua Haberman9a360ad2019-11-12 08:08:46 -0800176 "upb/reflection.h",
Joshua Haberman5e550e82021-01-09 15:45:44 -0800177 "upb/reflection.hpp",
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700178 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700179 copts = UPB_DEFAULT_COPTS,
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700180 visibility = ["//visibility:public"],
Josh Habermancd9e1e62019-04-17 15:23:00 -0700181 deps = [
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700182 ":descriptor_upb_proto",
Anna Rfc494112020-01-09 14:16:25 -0800183 ":port",
Joshua Haberman9b073112019-05-14 11:12:13 -0700184 ":table",
Joshua Haberman9a663562019-05-13 16:13:39 -0700185 ":upb",
Josh Habermancd9e1e62019-04-17 15:23:00 -0700186 ],
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700187)
188
Joshua Habermance1a3992020-02-04 06:22:09 -0800189cc_library(
190 name = "textformat",
191 srcs = [
Joshua Haberman02c89a82020-02-10 14:56:27 -0800192 "upb/text_encode.c",
Matt Kulukundisc8f823e2022-02-20 14:29:19 -0500193 "upb/upb_internal.h",
Joshua Habermance1a3992020-02-04 06:22:09 -0800194 ],
195 hdrs = [
Joshua Haberman02c89a82020-02-10 14:56:27 -0800196 "upb/text_encode.h",
Joshua Habermance1a3992020-02-04 06:22:09 -0800197 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700198 copts = UPB_DEFAULT_COPTS,
Joshua Habermance1a3992020-02-04 06:22:09 -0800199 visibility = ["//visibility:public"],
200 deps = [
Joshua Haberman4b8c04e2020-02-18 16:50:25 -0800201 ":port",
Joshua Habermance1a3992020-02-04 06:22:09 -0800202 ":reflection",
Matt Kulukundisedd1dd32022-02-20 17:44:27 -0500203 ":table",
Joshua Habermance1a3992020-02-04 06:22:09 -0800204 ],
205)
206
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800207cc_library(
208 name = "json",
209 srcs = [
Joshua Habermand49c1db2020-02-23 19:49:39 -0800210 "upb/json_decode.c",
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800211 "upb/json_encode.c",
Matt Kulukundisc8f823e2022-02-20 14:29:19 -0500212 "upb/upb_internal.h",
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800213 ],
214 hdrs = [
Joshua Habermand49c1db2020-02-23 19:49:39 -0800215 "upb/json_decode.h",
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800216 "upb/json_encode.h",
217 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700218 copts = UPB_DEFAULT_COPTS,
Lidi Zhengf72c26c2020-12-10 16:23:08 -0800219 visibility = ["//visibility:public"],
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800220 deps = [
Joshua Haberman4b8c04e2020-02-18 16:50:25 -0800221 ":port",
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800222 ":reflection",
Joshua Haberman4b8c04e2020-02-18 16:50:25 -0800223 ":upb",
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800224 ],
225)
226
Joshua Haberman11b6df02022-02-15 19:55:44 -0800227# Tests ########################################################################
228
229cc_test(
230 name = "test_generated_code",
231 srcs = ["upb/test_generated_code.cc"],
232 deps = [
233 ":empty_upbdefs_proto",
234 ":test_messages_proto3_proto_upb",
235 ":test_upb_proto",
Matt Kulukundisedd1dd32022-02-20 17:44:27 -0500236 ":upb",
Joshua Haberman11b6df02022-02-15 19:55:44 -0800237 "@com_google_googletest//:gtest_main",
238 ],
239)
240
241proto_library(
242 name = "test_proto",
243 testonly = 1,
244 srcs = ["upb/test.proto"],
245)
246
247upb_proto_library(
248 name = "test_upb_proto",
249 testonly = 1,
250 deps = [":test_proto"],
251)
252
253proto_library(
254 name = "empty_proto",
255 srcs = ["upb/empty.proto"],
256)
257
258upb_proto_reflection_library(
259 name = "empty_upbdefs_proto",
260 testonly = 1,
261 deps = [":empty_proto"],
262)
263
264upb_proto_library(
265 name = "test_messages_proto3_proto_upb",
266 testonly = 1,
267 deps = ["@com_google_protobuf//:test_messages_proto3_proto"],
268)
Matt Kulukundis61b09052022-02-19 19:35:58 -0500269
Joshua Habermance012b72021-10-01 16:34:42 -0700270cc_test(
271 name = "msg_test",
272 srcs = ["upb/msg_test.cc"],
273 deps = [
Joshua Habermance012b72021-10-01 16:34:42 -0700274 ":json",
Matt Kulukundis61b09052022-02-19 19:35:58 -0500275 ":msg_test_upb_proto_reflection",
276 "@com_google_googletest//:gtest_main",
Joshua Habermance012b72021-10-01 16:34:42 -0700277 ],
278)
279
280proto_library(
281 name = "msg_test_proto",
Matt Kulukundis61b09052022-02-19 19:35:58 -0500282 testonly = 1,
Joshua Habermance012b72021-10-01 16:34:42 -0700283 srcs = ["upb/msg_test.proto"],
284 deps = ["@com_google_protobuf//:test_messages_proto3_proto"],
285)
286
287upb_proto_reflection_library(
288 name = "msg_test_upb_proto_reflection",
Matt Kulukundis61b09052022-02-19 19:35:58 -0500289 testonly = 1,
Joshua Habermance012b72021-10-01 16:34:42 -0700290 deps = [":msg_test_proto"],
291)
292
Joshua Haberman11b6df02022-02-15 19:55:44 -0800293proto_library(
294 name = "test_cpp_proto",
295 srcs = ["upb/test_cpp.proto"],
Matt Kulukundis61b09052022-02-19 19:35:58 -0500296 deps = ["@com_google_protobuf//:timestamp_proto"],
Joshua Haberman11b6df02022-02-15 19:55:44 -0800297)
298
299upb_proto_library(
300 name = "test_cpp_upb_proto",
301 deps = ["test_cpp_proto"],
302)
303
304upb_proto_reflection_library(
305 name = "test_cpp_upb_proto_reflection",
306 deps = ["test_cpp_proto"],
307)
308
Matt Kulukundis92d71a42022-02-20 15:20:48 -0500309upb_proto_library(
310 name = "timestamp_upb_proto",
311 deps = ["@com_google_protobuf//:timestamp_proto"],
312)
313
314upb_proto_reflection_library(
315 name = "timestamp_upb_proto_reflection",
316 deps = ["@com_google_protobuf//:timestamp_proto"],
317)
318
Joshua Haberman11b6df02022-02-15 19:55:44 -0800319cc_test(
320 name = "test_cpp",
321 srcs = ["upb/test_cpp.cc"],
322 copts = UPB_DEFAULT_CPPOPTS,
323 deps = [
324 ":test_cpp_upb_proto",
325 ":test_cpp_upb_proto_reflection",
Matt Kulukundis92d71a42022-02-20 15:20:48 -0500326 ":timestamp_upb_proto",
327 ":timestamp_upb_proto_reflection",
Joshua Haberman11b6df02022-02-15 19:55:44 -0800328 "//:json",
329 "//:port",
330 "//:reflection",
331 "//:upb",
332 "@com_google_googletest//:gtest_main",
333 ],
334)
335
336cc_test(
337 name = "test_table",
338 srcs = ["upb/test_table.cc"],
339 copts = UPB_DEFAULT_CPPOPTS,
340 deps = [
341 "//:port",
342 "//:table",
343 "//:upb",
344 "@com_google_googletest//:gtest_main",
345 ],
346)
347
Joshua Haberman11b6df02022-02-15 19:55:44 -0800348upb_proto_library(
349 name = "conformance_proto_upb",
350 testonly = 1,
351 deps = ["@com_google_protobuf//:conformance_proto"],
352)
353
354upb_proto_reflection_library(
355 name = "conformance_proto_upbdefs",
356 testonly = 1,
357 deps = ["@com_google_protobuf//:conformance_proto"],
358)
359
360upb_proto_reflection_library(
361 name = "test_messages_proto2_upbdefs",
362 testonly = 1,
363 deps = ["@com_google_protobuf//:test_messages_proto2_proto"],
364)
365
366upb_proto_reflection_library(
367 name = "test_messages_proto3_upbdefs",
368 testonly = 1,
369 deps = ["@com_google_protobuf//:test_messages_proto3_proto"],
370)
371
372cc_binary(
373 name = "conformance_upb",
374 testonly = 1,
375 srcs = ["upb/conformance_upb.c"],
376 copts = UPB_DEFAULT_COPTS,
377 data = ["upb/conformance_upb_failures.txt"],
378 deps = [
379 ":conformance_proto_upb",
380 ":conformance_proto_upbdefs",
381 ":test_messages_proto2_upbdefs",
382 ":test_messages_proto3_upbdefs",
383 "//:json",
384 "//:port",
385 "//:reflection",
386 "//:textformat",
387 "//:upb",
388 ],
389)
390
391make_shell_script(
392 name = "gen_test_conformance_upb",
393 out = "test_conformance_upb.sh",
394 contents = "external/com_google_protobuf/conformance_test_runner " +
395 " --enforce_recommended " +
396 " --failure_list ./upb/conformance_upb_failures.txt" +
397 " ./conformance_upb",
398)
399
400sh_test(
401 name = "test_conformance_upb",
402 srcs = ["test_conformance_upb.sh"],
403 data = [
404 "upb/conformance_upb_failures.txt",
405 ":conformance_upb",
406 "@com_google_protobuf//:conformance_test_runner",
407 ],
408 deps = ["@bazel_tools//tools/bash/runfiles"],
409)
410
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700411# Internal C/C++ libraries #####################################################
412
413cc_library(
414 name = "table",
Joshua Habermancb234e62020-10-17 17:48:32 -0700415 hdrs = [
Joshua Haberman38813932021-04-05 16:00:25 -0700416 "upb/table_internal.h",
Joshua Habermanefd576b2020-10-26 21:37:17 -0700417 "upb/upb.h",
Joshua Habermancb234e62020-10-17 17:48:32 -0700418 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700419 visibility = ["//tests:__pkg__"],
Anna Rde1bc112020-01-07 15:45:19 -0800420 deps = [
421 ":port",
Anna Rde1bc112020-01-07 15:45:19 -0800422 ],
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700423)
424
Joshua Haberman77371f02019-01-23 16:26:13 -0800425# Amalgamation #################################################################
426
Joshua Haberman83c0edb2021-02-28 16:56:49 -0800427# copybara:strip_for_google3_begin
428
Joshua Haberman77371f02019-01-23 16:26:13 -0800429upb_amalgamation(
430 name = "gen_amalgamation",
431 outs = [
432 "upb.c",
433 "upb.h",
434 ],
Joshua Haberman77371f02019-01-23 16:26:13 -0800435 libs = [
436 ":upb",
Joshua Habermancb234e62020-10-17 17:48:32 -0700437 ":fastdecode",
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700438 ":descriptor_upb_proto",
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700439 ":reflection",
Anna Rde1bc112020-01-07 15:45:19 -0800440 ":port",
Joshua Haberman77371f02019-01-23 16:26:13 -0800441 ],
442)
443
444cc_library(
445 name = "amalgamation",
446 srcs = ["upb.c"],
447 hdrs = ["upb.h"],
Joshua Habermane86541a2020-10-28 17:53:09 -0700448 copts = UPB_DEFAULT_COPTS,
Joshua Haberman4307f5d2021-10-11 23:02:32 -0700449 deps = ["//third_party/utf8_range"],
Joshua Haberman77371f02019-01-23 16:26:13 -0800450)
451
Joshua Haberman16facab2020-05-08 16:40:24 -0700452upb_amalgamation(
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700453 name = "gen_php_amalgamation",
Joshua Haberman16facab2020-05-08 16:40:24 -0700454 outs = [
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700455 "php-upb.c",
456 "php-upb.h",
Joshua Haberman16facab2020-05-08 16:40:24 -0700457 ],
Joshua Haberman16facab2020-05-08 16:40:24 -0700458 libs = [
459 ":upb",
Joshua Habermancb234e62020-10-17 17:48:32 -0700460 ":fastdecode",
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700461 ":descriptor_upb_proto",
462 ":descriptor_upb_proto_reflection",
Joshua Haberman16facab2020-05-08 16:40:24 -0700463 ":reflection",
464 ":port",
465 ":json",
466 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700467 prefix = "php-",
Joshua Haberman16facab2020-05-08 16:40:24 -0700468)
469
470cc_library(
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700471 name = "php_amalgamation",
472 srcs = ["php-upb.c"],
473 hdrs = ["php-upb.h"],
Joshua Habermane86541a2020-10-28 17:53:09 -0700474 copts = UPB_DEFAULT_COPTS,
Joshua Haberman4307f5d2021-10-11 23:02:32 -0700475 deps = ["//third_party/utf8_range"],
Joshua Haberman16facab2020-05-08 16:40:24 -0700476)
477
Joshua Habermanefefbff2020-08-03 10:12:31 -0700478upb_amalgamation(
479 name = "gen_ruby_amalgamation",
Joshua Habermanefefbff2020-08-03 10:12:31 -0700480 outs = [
481 "ruby-upb.c",
482 "ruby-upb.h",
483 ],
Joshua Habermanefefbff2020-08-03 10:12:31 -0700484 libs = [
485 ":upb",
Joshua Habermancb234e62020-10-17 17:48:32 -0700486 ":fastdecode",
Joshua Habermanefefbff2020-08-03 10:12:31 -0700487 ":descriptor_upb_proto",
488 ":reflection",
489 ":port",
490 ":json",
491 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700492 prefix = "ruby-",
Joshua Habermanefefbff2020-08-03 10:12:31 -0700493)
494
495cc_library(
496 name = "ruby_amalgamation",
497 srcs = ["ruby-upb.c"],
498 hdrs = ["ruby-upb.h"],
Joshua Habermane86541a2020-10-28 17:53:09 -0700499 copts = UPB_DEFAULT_COPTS,
Joshua Haberman4307f5d2021-10-11 23:02:32 -0700500 deps = ["//third_party/utf8_range"],
Joshua Habermanefefbff2020-08-03 10:12:31 -0700501)
502
Joshua Habermane3f41de2020-10-17 13:15:58 -0700503exports_files(
504 [
505 "upb/json/parser.rl",
506 "BUILD",
507 "WORKSPACE",
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700508 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700509 visibility = ["//cmake:__pkg__"],
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700510)
511
Joshua Habermane3f41de2020-10-17 13:15:58 -0700512exports_files(
513 [
Joshua Habermanbfc86d32019-12-04 16:56:40 -0800514 "third_party/lunit/console.lua",
515 "third_party/lunit/lunit.lua",
516 ],
Joshua Haberman11b6df02022-02-15 19:55:44 -0800517 visibility = ["//upb/bindings/lua:__pkg__"],
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700518)
519
Joshua Haberman985145c2019-04-24 17:36:17 +0000520filegroup(
521 name = "cmake_files",
522 srcs = glob([
Joshua Haberman985145c2019-04-24 17:36:17 +0000523 "google/**/*",
524 "upbc/**/*",
525 "upb/**/*",
526 "tests/**/*",
Joshua Haberman4f901b62020-10-14 16:32:43 -0700527 "third_party/**/*",
Joshua Haberman9a663562019-05-13 16:13:39 -0700528 ]),
Joshua Habermane3f41de2020-10-17 13:15:58 -0700529 visibility = ["//cmake:__pkg__"],
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700530)
Joshua Haberman83c0edb2021-02-28 16:56:49 -0800531
532# copybara:strip_end