blob: 37b0479d6340a0d187487da8a5fe7d8d8466f33f [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 Haberman2c166492020-10-17 15:49:11 -070029 "upb_amalgamation", # copybara:strip_for_google3
Joshua Haberman06b90f92019-05-14 15:58:58 -070030)
Joshua Haberman06b90f92019-05-14 15:58:58 -070031load(
Joshua Haberman5611ff22019-05-16 11:35:00 -070032 "//bazel:upb_proto_library.bzl",
Joshua Habermana345af92020-10-18 13:39:13 -070033 "upb_fasttable_enabled",
Josh Habermana7ebe542018-11-03 18:18:47 -070034 "upb_proto_library",
Joshua Habermana274ad72020-10-28 13:06:30 -070035 "upb_proto_library_copts",
Joshua Habermane8f9eac2020-10-28 22:50:03 -070036 "upb_proto_reflection_library",
Josh Haberman2655ed92018-11-03 13:04:10 -070037)
Joshua Haberman0dc23942020-06-05 09:17:33 -070038
Joshua Haberman83c0edb2021-02-28 16:56:49 -080039licenses(["notice"])
Joshua Haberman7f9f7222019-01-23 17:10:22 -080040
41exports_files([
42 "LICENSE",
43 "build_defs",
44])
45
Joshua Haberman00f96cb2019-03-27 12:13:59 -070046config_setting(
Nicolas "Pixel" Noblece3ba4d2019-07-18 01:12:00 +020047 name = "windows",
48 constraint_values = ["@bazel_tools//platforms:windows"],
49)
50
Joshua Habermana345af92020-10-18 13:39:13 -070051upb_fasttable_enabled(
52 name = "fasttable_enabled",
Joshua Habermanb9286962020-10-26 21:23:16 -070053 build_setting_default = False,
Joshua Habermana345af92020-10-18 13:39:13 -070054 visibility = ["//visibility:public"],
55)
56
Joshua Habermane8f9eac2020-10-28 22:50:03 -070057config_setting(
58 name = "fasttable_enabled_setting",
59 flag_values = {"//:fasttable_enabled": "true"},
60)
61
Joshua Habermana274ad72020-10-28 13:06:30 -070062upb_proto_library_copts(
63 name = "upb_proto_library_copts__for_generated_code_only_do_not_use",
64 copts = UPB_DEFAULT_COPTS,
65 visibility = ["//visibility:public"],
66)
67
Joshua Haberman928ef7f2019-03-27 12:52:33 -070068# Public C/C++ libraries #######################################################
Josh Haberman01ed4ce2018-11-02 12:49:15 -070069
70cc_library(
Anna Rde1bc112020-01-07 15:45:19 -080071 name = "port",
Joshua Haberman558315a2020-10-28 17:13:13 -070072 copts = UPB_DEFAULT_COPTS,
Anna Rde1bc112020-01-07 15:45:19 -080073 textual_hdrs = [
74 "upb/port_def.inc",
75 "upb/port_undef.inc",
76 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -070077 visibility = ["//tests:__pkg__"],
Anna Rde1bc112020-01-07 15:45:19 -080078)
79
80cc_library(
Josh Haberman01ed4ce2018-11-02 12:49:15 -070081 name = "upb",
82 srcs = [
Josh Haberman01ed4ce2018-11-02 12:49:15 -070083 "upb/decode.c",
Joshua Haberman38813932021-04-05 16:00:25 -070084 "upb/decode_internal.h",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070085 "upb/encode.c",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070086 "upb/msg.c",
Joshua Haberman38813932021-04-05 16:00:25 -070087 "upb/msg_internal.h",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070088 "upb/table.c",
Joshua Haberman38813932021-04-05 16:00:25 -070089 "upb/table_internal.h",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070090 "upb/upb.c",
Joshua Haberman38813932021-04-05 16:00:25 -070091 "upb/upb_internal.h",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070092 ],
93 hdrs = [
Josh Haberman01ed4ce2018-11-02 12:49:15 -070094 "upb/decode.h",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070095 "upb/encode.h",
Joshua Haberman1674f282021-04-04 18:43:24 -070096 "upb/msg.h",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070097 "upb/upb.h",
Joshua Haberman2559e782020-04-09 14:36:24 -070098 "upb/upb.hpp",
Josh Haberman01ed4ce2018-11-02 12:49:15 -070099 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700100 copts = UPB_DEFAULT_COPTS,
Joshua Habermanba29af32019-06-01 19:27:49 -0700101 visibility = ["//visibility:public"],
Joshua Habermanefd576b2020-10-26 21:37:17 -0700102 deps = [
103 ":fastdecode",
104 ":port",
Joshua Habermane9b79542020-11-04 11:12:36 -0800105 "//third_party/wyhash",
Joshua Habermanefd576b2020-10-26 21:37:17 -0700106 ],
Joshua Habermancb234e62020-10-17 17:48:32 -0700107)
108
109cc_library(
110 name = "fastdecode",
111 srcs = [
Joshua Haberman38813932021-04-05 16:00:25 -0700112 "upb/decode_internal.h",
Joshua Habermancb234e62020-10-17 17:48:32 -0700113 "upb/decode_fast.c",
114 "upb/decode_fast.h",
Joshua Habermancb234e62020-10-17 17:48:32 -0700115 "upb/msg.h",
Joshua Haberman38813932021-04-05 16:00:25 -0700116 "upb/msg_internal.h",
117 "upb/upb_internal.h",
Joshua Habermancb234e62020-10-17 17:48:32 -0700118 ],
Joshua Habermane86541a2020-10-28 17:53:09 -0700119 copts = UPB_DEFAULT_COPTS,
Joshua Habermanefd576b2020-10-26 21:37:17 -0700120 deps = [
121 ":port",
122 ":table",
123 ],
Joshua Habermanba29af32019-06-01 19:27:49 -0700124)
125
126# Common support routines used by generated code. This library has no
127# implementation, but depends on :upb and exposes a few more hdrs.
128#
129# This is public only because we have no way of visibility-limiting it to
130# upb_proto_library() only. This interface is not stable and by using it you
131# give up any backward compatibility guarantees.
132cc_library(
133 name = "generated_code_support__only_for_generated_code_do_not_use__i_give_permission_to_break_me",
Joshua Habermanba29af32019-06-01 19:27:49 -0700134 hdrs = [
Joshua Habermanaec762e2020-10-11 23:14:50 -0700135 "upb/decode_fast.h",
Joshua Habermanba29af32019-06-01 19:27:49 -0700136 "upb/msg.h",
Joshua Haberman42bdfcb2021-04-06 09:25:28 -0700137 "upb/msg_internal.h",
Anna Ra27429f2020-01-09 14:50:03 -0800138 "upb/port_def.inc",
139 "upb/port_undef.inc",
Joshua Habermanba29af32019-06-01 19:27:49 -0700140 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700141 copts = UPB_DEFAULT_COPTS,
Vishal Powar7031f772018-11-28 15:32:16 -0800142 visibility = ["//visibility:public"],
Anna Rde1bc112020-01-07 15:45:19 -0800143 deps = [
Joshua Haberman4b8c04e2020-02-18 16:50:25 -0800144 ":table",
Anna Rde1bc112020-01-07 15:45:19 -0800145 ":upb",
146 ],
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700147)
148
Josh Habermancd9e1e62019-04-17 15:23:00 -0700149upb_proto_library(
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700150 name = "descriptor_upb_proto",
151 visibility = ["//visibility:public"],
152 deps = ["@com_google_protobuf//:descriptor_proto"],
153)
154
155upb_proto_reflection_library(
156 name = "descriptor_upb_proto_reflection",
Joshua Habermanc58541e2019-05-15 09:49:29 -0700157 visibility = ["//visibility:public"],
Google-Autofuzz8f196672019-06-25 20:14:14 -0400158 deps = ["@com_google_protobuf//:descriptor_proto"],
Josh Habermancd9e1e62019-04-17 15:23:00 -0700159)
160
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700161cc_library(
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700162 name = "reflection",
163 srcs = [
164 "upb/def.c",
Joshua Haberman58010a32020-02-18 16:53:21 -0800165 "upb/msg.h",
Joshua Haberman9a360ad2019-11-12 08:08:46 -0800166 "upb/reflection.c",
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700167 ],
168 hdrs = [
169 "upb/def.h",
Joshua Haberman2559e782020-04-09 14:36:24 -0700170 "upb/def.hpp",
Joshua Haberman9a360ad2019-11-12 08:08:46 -0800171 "upb/reflection.h",
Joshua Haberman5e550e82021-01-09 15:45:44 -0800172 "upb/reflection.hpp",
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700173 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700174 copts = UPB_DEFAULT_COPTS,
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700175 visibility = ["//visibility:public"],
Josh Habermancd9e1e62019-04-17 15:23:00 -0700176 deps = [
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700177 ":descriptor_upb_proto",
Anna Rfc494112020-01-09 14:16:25 -0800178 ":port",
Joshua Haberman9b073112019-05-14 11:12:13 -0700179 ":table",
Joshua Haberman9a663562019-05-13 16:13:39 -0700180 ":upb",
Josh Habermancd9e1e62019-04-17 15:23:00 -0700181 ],
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700182)
183
Joshua Habermance1a3992020-02-04 06:22:09 -0800184cc_library(
185 name = "textformat",
186 srcs = [
Joshua Haberman02c89a82020-02-10 14:56:27 -0800187 "upb/text_encode.c",
Joshua Habermance1a3992020-02-04 06:22:09 -0800188 ],
189 hdrs = [
Joshua Haberman02c89a82020-02-10 14:56:27 -0800190 "upb/text_encode.h",
Joshua Habermance1a3992020-02-04 06:22:09 -0800191 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700192 copts = UPB_DEFAULT_COPTS,
Joshua Habermance1a3992020-02-04 06:22:09 -0800193 visibility = ["//visibility:public"],
194 deps = [
Joshua Haberman4b8c04e2020-02-18 16:50:25 -0800195 ":port",
Joshua Habermance1a3992020-02-04 06:22:09 -0800196 ":reflection",
197 ],
198)
199
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800200cc_library(
201 name = "json",
202 srcs = [
Joshua Habermand49c1db2020-02-23 19:49:39 -0800203 "upb/json_decode.c",
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800204 "upb/json_encode.c",
205 ],
206 hdrs = [
Joshua Habermand49c1db2020-02-23 19:49:39 -0800207 "upb/json_decode.h",
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800208 "upb/json_encode.h",
209 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700210 copts = UPB_DEFAULT_COPTS,
Lidi Zhengf72c26c2020-12-10 16:23:08 -0800211 visibility = ["//visibility:public"],
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800212 deps = [
Joshua Haberman4b8c04e2020-02-18 16:50:25 -0800213 ":port",
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800214 ":reflection",
Joshua Haberman4b8c04e2020-02-18 16:50:25 -0800215 ":upb",
Joshua Haberman6e9db7d2020-02-15 19:31:51 -0800216 ],
217)
218
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700219# Internal C/C++ libraries #####################################################
220
221cc_library(
222 name = "table",
Joshua Habermancb234e62020-10-17 17:48:32 -0700223 hdrs = [
Joshua Haberman38813932021-04-05 16:00:25 -0700224 "upb/table_internal.h",
Joshua Habermanefd576b2020-10-26 21:37:17 -0700225 "upb/upb.h",
Joshua Habermancb234e62020-10-17 17:48:32 -0700226 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700227 visibility = ["//tests:__pkg__"],
Anna Rde1bc112020-01-07 15:45:19 -0800228 deps = [
229 ":port",
Anna Rde1bc112020-01-07 15:45:19 -0800230 ],
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700231)
232
Joshua Haberman77371f02019-01-23 16:26:13 -0800233# Amalgamation #################################################################
234
Joshua Haberman83c0edb2021-02-28 16:56:49 -0800235# copybara:strip_for_google3_begin
236
Joshua Haberman77371f02019-01-23 16:26:13 -0800237py_binary(
238 name = "amalgamate",
239 srcs = ["tools/amalgamate.py"],
240)
241
242upb_amalgamation(
243 name = "gen_amalgamation",
244 outs = [
245 "upb.c",
246 "upb.h",
247 ],
248 amalgamator = ":amalgamate",
249 libs = [
250 ":upb",
Joshua Habermancb234e62020-10-17 17:48:32 -0700251 ":fastdecode",
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700252 ":descriptor_upb_proto",
Joshua Haberman928ef7f2019-03-27 12:52:33 -0700253 ":reflection",
Anna Rde1bc112020-01-07 15:45:19 -0800254 ":port",
Joshua Haberman77371f02019-01-23 16:26:13 -0800255 ],
256)
257
258cc_library(
259 name = "amalgamation",
260 srcs = ["upb.c"],
261 hdrs = ["upb.h"],
Joshua Habermane86541a2020-10-28 17:53:09 -0700262 copts = UPB_DEFAULT_COPTS,
Joshua Habermane9b79542020-11-04 11:12:36 -0800263 deps = ["//third_party/wyhash"],
Joshua Haberman77371f02019-01-23 16:26:13 -0800264)
265
Joshua Haberman16facab2020-05-08 16:40:24 -0700266upb_amalgamation(
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700267 name = "gen_php_amalgamation",
Joshua Haberman16facab2020-05-08 16:40:24 -0700268 outs = [
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700269 "php-upb.c",
270 "php-upb.h",
Joshua Haberman16facab2020-05-08 16:40:24 -0700271 ],
272 amalgamator = ":amalgamate",
273 libs = [
274 ":upb",
Joshua Habermancb234e62020-10-17 17:48:32 -0700275 ":fastdecode",
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700276 ":descriptor_upb_proto",
277 ":descriptor_upb_proto_reflection",
Joshua Haberman16facab2020-05-08 16:40:24 -0700278 ":reflection",
279 ":port",
280 ":json",
281 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700282 prefix = "php-",
Joshua Haberman16facab2020-05-08 16:40:24 -0700283)
284
285cc_library(
Joshua Haberman543a0ce2020-05-26 22:30:50 -0700286 name = "php_amalgamation",
287 srcs = ["php-upb.c"],
288 hdrs = ["php-upb.h"],
Joshua Habermane86541a2020-10-28 17:53:09 -0700289 copts = UPB_DEFAULT_COPTS,
Joshua Habermane9b79542020-11-04 11:12:36 -0800290 deps = ["//third_party/wyhash"],
Joshua Haberman16facab2020-05-08 16:40:24 -0700291)
292
Joshua Habermanefefbff2020-08-03 10:12:31 -0700293upb_amalgamation(
294 name = "gen_ruby_amalgamation",
Joshua Habermanefefbff2020-08-03 10:12:31 -0700295 outs = [
296 "ruby-upb.c",
297 "ruby-upb.h",
298 ],
299 amalgamator = ":amalgamate",
300 libs = [
301 ":upb",
Joshua Habermancb234e62020-10-17 17:48:32 -0700302 ":fastdecode",
Joshua Habermanefefbff2020-08-03 10:12:31 -0700303 ":descriptor_upb_proto",
304 ":reflection",
305 ":port",
306 ":json",
307 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700308 prefix = "ruby-",
Joshua Habermanefefbff2020-08-03 10:12:31 -0700309)
310
311cc_library(
312 name = "ruby_amalgamation",
313 srcs = ["ruby-upb.c"],
314 hdrs = ["ruby-upb.h"],
Joshua Habermane86541a2020-10-28 17:53:09 -0700315 copts = UPB_DEFAULT_COPTS,
Joshua Habermane9b79542020-11-04 11:12:36 -0800316 deps = ["//third_party/wyhash"],
Joshua Habermanefefbff2020-08-03 10:12:31 -0700317)
318
Joshua Habermane3f41de2020-10-17 13:15:58 -0700319exports_files(
320 [
321 "upb/json/parser.rl",
322 "BUILD",
323 "WORKSPACE",
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700324 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700325 visibility = ["//cmake:__pkg__"],
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700326)
327
Joshua Habermane3f41de2020-10-17 13:15:58 -0700328exports_files(
329 [
Joshua Habermanbfc86d32019-12-04 16:56:40 -0800330 "third_party/lunit/console.lua",
331 "third_party/lunit/lunit.lua",
332 ],
Joshua Habermane3f41de2020-10-17 13:15:58 -0700333 visibility = ["//tests/bindings/lua:__pkg__"],
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700334)
335
Joshua Haberman985145c2019-04-24 17:36:17 +0000336filegroup(
337 name = "cmake_files",
338 srcs = glob([
Joshua Haberman985145c2019-04-24 17:36:17 +0000339 "google/**/*",
340 "upbc/**/*",
341 "upb/**/*",
342 "tests/**/*",
Joshua Haberman4f901b62020-10-14 16:32:43 -0700343 "third_party/**/*",
Joshua Haberman9a663562019-05-13 16:13:39 -0700344 ]),
Joshua Habermane3f41de2020-10-17 13:15:58 -0700345 visibility = ["//cmake:__pkg__"],
Josh Haberman01ed4ce2018-11-02 12:49:15 -0700346)
Joshua Haberman83c0edb2021-02-28 16:56:49 -0800347
348# copybara:strip_end