Joshua Haberman | 823eb09 | 2021-04-05 12:26:41 -0700 | [diff] [blame] | 1 | # Copyright (c) 2009-2021, Google LLC |
Joshua Haberman | e59d2c8 | 2021-04-05 10:47:53 -0700 | [diff] [blame] | 2 | # 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 Haberman | 2655ed9 | 2018-11-03 13:04:10 -0700 | [diff] [blame] | 26 | load( |
Joshua Haberman | 5611ff2 | 2019-05-16 11:35:00 -0700 | [diff] [blame] | 27 | "//bazel:build_defs.bzl", |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 28 | "UPB_DEFAULT_COPTS", |
Joshua Haberman | 11b6df0 | 2022-02-15 19:55:44 -0800 | [diff] [blame] | 29 | "UPB_DEFAULT_CPPOPTS", |
| 30 | "make_shell_script", |
Joshua Haberman | 2c16649 | 2020-10-17 15:49:11 -0700 | [diff] [blame] | 31 | "upb_amalgamation", # copybara:strip_for_google3 |
Joshua Haberman | 06b90f9 | 2019-05-14 15:58:58 -0700 | [diff] [blame] | 32 | ) |
Joshua Haberman | 06b90f9 | 2019-05-14 15:58:58 -0700 | [diff] [blame] | 33 | load( |
Joshua Haberman | 5611ff2 | 2019-05-16 11:35:00 -0700 | [diff] [blame] | 34 | "//bazel:upb_proto_library.bzl", |
Joshua Haberman | a345af9 | 2020-10-18 13:39:13 -0700 | [diff] [blame] | 35 | "upb_fasttable_enabled", |
Josh Haberman | a7ebe54 | 2018-11-03 18:18:47 -0700 | [diff] [blame] | 36 | "upb_proto_library", |
Joshua Haberman | a274ad7 | 2020-10-28 13:06:30 -0700 | [diff] [blame] | 37 | "upb_proto_library_copts", |
Joshua Haberman | e8f9eac | 2020-10-28 22:50:03 -0700 | [diff] [blame] | 38 | "upb_proto_reflection_library", |
Josh Haberman | 2655ed9 | 2018-11-03 13:04:10 -0700 | [diff] [blame] | 39 | ) |
Joshua Haberman | 0dc2394 | 2020-06-05 09:17:33 -0700 | [diff] [blame] | 40 | |
Joshua Haberman | 83c0edb | 2021-02-28 16:56:49 -0800 | [diff] [blame] | 41 | licenses(["notice"]) |
Joshua Haberman | 7f9f722 | 2019-01-23 17:10:22 -0800 | [diff] [blame] | 42 | |
| 43 | exports_files([ |
| 44 | "LICENSE", |
| 45 | "build_defs", |
| 46 | ]) |
| 47 | |
Joshua Haberman | 00f96cb | 2019-03-27 12:13:59 -0700 | [diff] [blame] | 48 | config_setting( |
Nicolas "Pixel" Noble | ce3ba4d | 2019-07-18 01:12:00 +0200 | [diff] [blame] | 49 | name = "windows", |
| 50 | constraint_values = ["@bazel_tools//platforms:windows"], |
Eli Schleifer | 231daa3 | 2021-12-20 16:01:23 -0800 | [diff] [blame] | 51 | visibility = ["//visibility:public"], |
Nicolas "Pixel" Noble | ce3ba4d | 2019-07-18 01:12:00 +0200 | [diff] [blame] | 52 | ) |
| 53 | |
Joshua Haberman | a345af9 | 2020-10-18 13:39:13 -0700 | [diff] [blame] | 54 | upb_fasttable_enabled( |
| 55 | name = "fasttable_enabled", |
Joshua Haberman | b928696 | 2020-10-26 21:23:16 -0700 | [diff] [blame] | 56 | build_setting_default = False, |
Joshua Haberman | a345af9 | 2020-10-18 13:39:13 -0700 | [diff] [blame] | 57 | visibility = ["//visibility:public"], |
| 58 | ) |
| 59 | |
Joshua Haberman | e8f9eac | 2020-10-28 22:50:03 -0700 | [diff] [blame] | 60 | config_setting( |
| 61 | name = "fasttable_enabled_setting", |
| 62 | flag_values = {"//:fasttable_enabled": "true"}, |
| 63 | ) |
| 64 | |
Joshua Haberman | a274ad7 | 2020-10-28 13:06:30 -0700 | [diff] [blame] | 65 | upb_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 Haberman | 928ef7f | 2019-03-27 12:52:33 -0700 | [diff] [blame] | 71 | # Public C/C++ libraries ####################################################### |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 72 | |
| 73 | cc_library( |
Anna R | de1bc11 | 2020-01-07 15:45:19 -0800 | [diff] [blame] | 74 | name = "port", |
Joshua Haberman | 558315a | 2020-10-28 17:13:13 -0700 | [diff] [blame] | 75 | copts = UPB_DEFAULT_COPTS, |
Anna R | de1bc11 | 2020-01-07 15:45:19 -0800 | [diff] [blame] | 76 | textual_hdrs = [ |
| 77 | "upb/port_def.inc", |
| 78 | "upb/port_undef.inc", |
| 79 | ], |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 80 | visibility = ["//tests:__pkg__"], |
Anna R | de1bc11 | 2020-01-07 15:45:19 -0800 | [diff] [blame] | 81 | ) |
| 82 | |
| 83 | cc_library( |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 84 | name = "upb", |
| 85 | srcs = [ |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 86 | "upb/decode.c", |
Joshua Haberman | 3881393 | 2021-04-05 16:00:25 -0700 | [diff] [blame] | 87 | "upb/decode_internal.h", |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 88 | "upb/encode.c", |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 89 | "upb/msg.c", |
Joshua Haberman | 3881393 | 2021-04-05 16:00:25 -0700 | [diff] [blame] | 90 | "upb/msg_internal.h", |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 91 | "upb/table.c", |
Joshua Haberman | 3881393 | 2021-04-05 16:00:25 -0700 | [diff] [blame] | 92 | "upb/table_internal.h", |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 93 | "upb/upb.c", |
Joshua Haberman | 3881393 | 2021-04-05 16:00:25 -0700 | [diff] [blame] | 94 | "upb/upb_internal.h", |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 95 | ], |
| 96 | hdrs = [ |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 97 | "upb/decode.h", |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 98 | "upb/encode.h", |
Joshua Haberman | 1674f28 | 2021-04-04 18:43:24 -0700 | [diff] [blame] | 99 | "upb/msg.h", |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 100 | "upb/upb.h", |
Joshua Haberman | 2559e78 | 2020-04-09 14:36:24 -0700 | [diff] [blame] | 101 | "upb/upb.hpp", |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 102 | ], |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 103 | copts = UPB_DEFAULT_COPTS, |
Joshua Haberman | ba29af3 | 2019-06-01 19:27:49 -0700 | [diff] [blame] | 104 | visibility = ["//visibility:public"], |
Joshua Haberman | efd576b | 2020-10-26 21:37:17 -0700 | [diff] [blame] | 105 | deps = [ |
| 106 | ":fastdecode", |
| 107 | ":port", |
Joshua Haberman | 4307f5d | 2021-10-11 23:02:32 -0700 | [diff] [blame] | 108 | "//third_party/utf8_range", |
Joshua Haberman | efd576b | 2020-10-26 21:37:17 -0700 | [diff] [blame] | 109 | ], |
Joshua Haberman | cb234e6 | 2020-10-17 17:48:32 -0700 | [diff] [blame] | 110 | ) |
| 111 | |
| 112 | cc_library( |
| 113 | name = "fastdecode", |
| 114 | srcs = [ |
Joshua Haberman | 3d437bb | 2021-10-13 09:53:36 -0700 | [diff] [blame] | 115 | "upb/decode.h", |
Joshua Haberman | cb234e6 | 2020-10-17 17:48:32 -0700 | [diff] [blame] | 116 | "upb/decode_fast.c", |
| 117 | "upb/decode_fast.h", |
Matt Kulukundis | 61b0905 | 2022-02-19 19:35:58 -0500 | [diff] [blame] | 118 | "upb/decode_internal.h", |
Joshua Haberman | cb234e6 | 2020-10-17 17:48:32 -0700 | [diff] [blame] | 119 | "upb/msg.h", |
Joshua Haberman | 3881393 | 2021-04-05 16:00:25 -0700 | [diff] [blame] | 120 | "upb/msg_internal.h", |
| 121 | "upb/upb_internal.h", |
Joshua Haberman | cb234e6 | 2020-10-17 17:48:32 -0700 | [diff] [blame] | 122 | ], |
Joshua Haberman | e86541a | 2020-10-28 17:53:09 -0700 | [diff] [blame] | 123 | copts = UPB_DEFAULT_COPTS, |
Joshua Haberman | efd576b | 2020-10-26 21:37:17 -0700 | [diff] [blame] | 124 | deps = [ |
| 125 | ":port", |
| 126 | ":table", |
Joshua Haberman | 4307f5d | 2021-10-11 23:02:32 -0700 | [diff] [blame] | 127 | "//third_party/utf8_range", |
Joshua Haberman | efd576b | 2020-10-26 21:37:17 -0700 | [diff] [blame] | 128 | ], |
Joshua Haberman | ba29af3 | 2019-06-01 19:27:49 -0700 | [diff] [blame] | 129 | ) |
| 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. |
| 137 | cc_library( |
| 138 | name = "generated_code_support__only_for_generated_code_do_not_use__i_give_permission_to_break_me", |
Joshua Haberman | ba29af3 | 2019-06-01 19:27:49 -0700 | [diff] [blame] | 139 | hdrs = [ |
Joshua Haberman | aec762e | 2020-10-11 23:14:50 -0700 | [diff] [blame] | 140 | "upb/decode_fast.h", |
Joshua Haberman | ba29af3 | 2019-06-01 19:27:49 -0700 | [diff] [blame] | 141 | "upb/msg.h", |
Joshua Haberman | 42bdfcb | 2021-04-06 09:25:28 -0700 | [diff] [blame] | 142 | "upb/msg_internal.h", |
Anna R | a27429f | 2020-01-09 14:50:03 -0800 | [diff] [blame] | 143 | "upb/port_def.inc", |
| 144 | "upb/port_undef.inc", |
Joshua Haberman | ba29af3 | 2019-06-01 19:27:49 -0700 | [diff] [blame] | 145 | ], |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 146 | copts = UPB_DEFAULT_COPTS, |
Vishal Powar | 7031f77 | 2018-11-28 15:32:16 -0800 | [diff] [blame] | 147 | visibility = ["//visibility:public"], |
Anna R | de1bc11 | 2020-01-07 15:45:19 -0800 | [diff] [blame] | 148 | deps = [ |
Joshua Haberman | 4b8c04e | 2020-02-18 16:50:25 -0800 | [diff] [blame] | 149 | ":table", |
Anna R | de1bc11 | 2020-01-07 15:45:19 -0800 | [diff] [blame] | 150 | ":upb", |
| 151 | ], |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 152 | ) |
| 153 | |
Josh Haberman | cd9e1e6 | 2019-04-17 15:23:00 -0700 | [diff] [blame] | 154 | upb_proto_library( |
Joshua Haberman | 543a0ce | 2020-05-26 22:30:50 -0700 | [diff] [blame] | 155 | name = "descriptor_upb_proto", |
| 156 | visibility = ["//visibility:public"], |
| 157 | deps = ["@com_google_protobuf//:descriptor_proto"], |
| 158 | ) |
| 159 | |
| 160 | upb_proto_reflection_library( |
| 161 | name = "descriptor_upb_proto_reflection", |
Joshua Haberman | c58541e | 2019-05-15 09:49:29 -0700 | [diff] [blame] | 162 | visibility = ["//visibility:public"], |
Google-Autofuzz | 8f19667 | 2019-06-25 20:14:14 -0400 | [diff] [blame] | 163 | deps = ["@com_google_protobuf//:descriptor_proto"], |
Josh Haberman | cd9e1e6 | 2019-04-17 15:23:00 -0700 | [diff] [blame] | 164 | ) |
| 165 | |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 166 | cc_library( |
Joshua Haberman | 928ef7f | 2019-03-27 12:52:33 -0700 | [diff] [blame] | 167 | name = "reflection", |
| 168 | srcs = [ |
| 169 | "upb/def.c", |
Joshua Haberman | 58010a3 | 2020-02-18 16:53:21 -0800 | [diff] [blame] | 170 | "upb/msg.h", |
Joshua Haberman | 9a360ad | 2019-11-12 08:08:46 -0800 | [diff] [blame] | 171 | "upb/reflection.c", |
Joshua Haberman | 928ef7f | 2019-03-27 12:52:33 -0700 | [diff] [blame] | 172 | ], |
| 173 | hdrs = [ |
| 174 | "upb/def.h", |
Joshua Haberman | 2559e78 | 2020-04-09 14:36:24 -0700 | [diff] [blame] | 175 | "upb/def.hpp", |
Joshua Haberman | 9a360ad | 2019-11-12 08:08:46 -0800 | [diff] [blame] | 176 | "upb/reflection.h", |
Joshua Haberman | 5e550e8 | 2021-01-09 15:45:44 -0800 | [diff] [blame] | 177 | "upb/reflection.hpp", |
Joshua Haberman | 928ef7f | 2019-03-27 12:52:33 -0700 | [diff] [blame] | 178 | ], |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 179 | copts = UPB_DEFAULT_COPTS, |
Joshua Haberman | 928ef7f | 2019-03-27 12:52:33 -0700 | [diff] [blame] | 180 | visibility = ["//visibility:public"], |
Josh Haberman | cd9e1e6 | 2019-04-17 15:23:00 -0700 | [diff] [blame] | 181 | deps = [ |
Joshua Haberman | 543a0ce | 2020-05-26 22:30:50 -0700 | [diff] [blame] | 182 | ":descriptor_upb_proto", |
Anna R | fc49411 | 2020-01-09 14:16:25 -0800 | [diff] [blame] | 183 | ":port", |
Joshua Haberman | 9b07311 | 2019-05-14 11:12:13 -0700 | [diff] [blame] | 184 | ":table", |
Joshua Haberman | 9a66356 | 2019-05-13 16:13:39 -0700 | [diff] [blame] | 185 | ":upb", |
Josh Haberman | cd9e1e6 | 2019-04-17 15:23:00 -0700 | [diff] [blame] | 186 | ], |
Joshua Haberman | 928ef7f | 2019-03-27 12:52:33 -0700 | [diff] [blame] | 187 | ) |
| 188 | |
Joshua Haberman | ce1a399 | 2020-02-04 06:22:09 -0800 | [diff] [blame] | 189 | cc_library( |
| 190 | name = "textformat", |
| 191 | srcs = [ |
Joshua Haberman | 02c89a8 | 2020-02-10 14:56:27 -0800 | [diff] [blame] | 192 | "upb/text_encode.c", |
Matt Kulukundis | c8f823e | 2022-02-20 14:29:19 -0500 | [diff] [blame] | 193 | "upb/upb_internal.h", |
Joshua Haberman | ce1a399 | 2020-02-04 06:22:09 -0800 | [diff] [blame] | 194 | ], |
| 195 | hdrs = [ |
Joshua Haberman | 02c89a8 | 2020-02-10 14:56:27 -0800 | [diff] [blame] | 196 | "upb/text_encode.h", |
Joshua Haberman | ce1a399 | 2020-02-04 06:22:09 -0800 | [diff] [blame] | 197 | ], |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 198 | copts = UPB_DEFAULT_COPTS, |
Joshua Haberman | ce1a399 | 2020-02-04 06:22:09 -0800 | [diff] [blame] | 199 | visibility = ["//visibility:public"], |
| 200 | deps = [ |
Joshua Haberman | 4b8c04e | 2020-02-18 16:50:25 -0800 | [diff] [blame] | 201 | ":port", |
Joshua Haberman | ce1a399 | 2020-02-04 06:22:09 -0800 | [diff] [blame] | 202 | ":reflection", |
Matt Kulukundis | edd1dd3 | 2022-02-20 17:44:27 -0500 | [diff] [blame^] | 203 | ":table", |
Joshua Haberman | ce1a399 | 2020-02-04 06:22:09 -0800 | [diff] [blame] | 204 | ], |
| 205 | ) |
| 206 | |
Joshua Haberman | 6e9db7d | 2020-02-15 19:31:51 -0800 | [diff] [blame] | 207 | cc_library( |
| 208 | name = "json", |
| 209 | srcs = [ |
Joshua Haberman | d49c1db | 2020-02-23 19:49:39 -0800 | [diff] [blame] | 210 | "upb/json_decode.c", |
Joshua Haberman | 6e9db7d | 2020-02-15 19:31:51 -0800 | [diff] [blame] | 211 | "upb/json_encode.c", |
Matt Kulukundis | c8f823e | 2022-02-20 14:29:19 -0500 | [diff] [blame] | 212 | "upb/upb_internal.h", |
Joshua Haberman | 6e9db7d | 2020-02-15 19:31:51 -0800 | [diff] [blame] | 213 | ], |
| 214 | hdrs = [ |
Joshua Haberman | d49c1db | 2020-02-23 19:49:39 -0800 | [diff] [blame] | 215 | "upb/json_decode.h", |
Joshua Haberman | 6e9db7d | 2020-02-15 19:31:51 -0800 | [diff] [blame] | 216 | "upb/json_encode.h", |
| 217 | ], |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 218 | copts = UPB_DEFAULT_COPTS, |
Lidi Zheng | f72c26c | 2020-12-10 16:23:08 -0800 | [diff] [blame] | 219 | visibility = ["//visibility:public"], |
Joshua Haberman | 6e9db7d | 2020-02-15 19:31:51 -0800 | [diff] [blame] | 220 | deps = [ |
Joshua Haberman | 4b8c04e | 2020-02-18 16:50:25 -0800 | [diff] [blame] | 221 | ":port", |
Joshua Haberman | 6e9db7d | 2020-02-15 19:31:51 -0800 | [diff] [blame] | 222 | ":reflection", |
Joshua Haberman | 4b8c04e | 2020-02-18 16:50:25 -0800 | [diff] [blame] | 223 | ":upb", |
Joshua Haberman | 6e9db7d | 2020-02-15 19:31:51 -0800 | [diff] [blame] | 224 | ], |
| 225 | ) |
| 226 | |
Joshua Haberman | 11b6df0 | 2022-02-15 19:55:44 -0800 | [diff] [blame] | 227 | # Tests ######################################################################## |
| 228 | |
| 229 | cc_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 Kulukundis | edd1dd3 | 2022-02-20 17:44:27 -0500 | [diff] [blame^] | 236 | ":upb", |
Joshua Haberman | 11b6df0 | 2022-02-15 19:55:44 -0800 | [diff] [blame] | 237 | "@com_google_googletest//:gtest_main", |
| 238 | ], |
| 239 | ) |
| 240 | |
| 241 | proto_library( |
| 242 | name = "test_proto", |
| 243 | testonly = 1, |
| 244 | srcs = ["upb/test.proto"], |
| 245 | ) |
| 246 | |
| 247 | upb_proto_library( |
| 248 | name = "test_upb_proto", |
| 249 | testonly = 1, |
| 250 | deps = [":test_proto"], |
| 251 | ) |
| 252 | |
| 253 | proto_library( |
| 254 | name = "empty_proto", |
| 255 | srcs = ["upb/empty.proto"], |
| 256 | ) |
| 257 | |
| 258 | upb_proto_reflection_library( |
| 259 | name = "empty_upbdefs_proto", |
| 260 | testonly = 1, |
| 261 | deps = [":empty_proto"], |
| 262 | ) |
| 263 | |
| 264 | upb_proto_library( |
| 265 | name = "test_messages_proto3_proto_upb", |
| 266 | testonly = 1, |
| 267 | deps = ["@com_google_protobuf//:test_messages_proto3_proto"], |
| 268 | ) |
Matt Kulukundis | 61b0905 | 2022-02-19 19:35:58 -0500 | [diff] [blame] | 269 | |
Joshua Haberman | ce012b7 | 2021-10-01 16:34:42 -0700 | [diff] [blame] | 270 | cc_test( |
| 271 | name = "msg_test", |
| 272 | srcs = ["upb/msg_test.cc"], |
| 273 | deps = [ |
Joshua Haberman | ce012b7 | 2021-10-01 16:34:42 -0700 | [diff] [blame] | 274 | ":json", |
Matt Kulukundis | 61b0905 | 2022-02-19 19:35:58 -0500 | [diff] [blame] | 275 | ":msg_test_upb_proto_reflection", |
| 276 | "@com_google_googletest//:gtest_main", |
Joshua Haberman | ce012b7 | 2021-10-01 16:34:42 -0700 | [diff] [blame] | 277 | ], |
| 278 | ) |
| 279 | |
| 280 | proto_library( |
| 281 | name = "msg_test_proto", |
Matt Kulukundis | 61b0905 | 2022-02-19 19:35:58 -0500 | [diff] [blame] | 282 | testonly = 1, |
Joshua Haberman | ce012b7 | 2021-10-01 16:34:42 -0700 | [diff] [blame] | 283 | srcs = ["upb/msg_test.proto"], |
| 284 | deps = ["@com_google_protobuf//:test_messages_proto3_proto"], |
| 285 | ) |
| 286 | |
| 287 | upb_proto_reflection_library( |
| 288 | name = "msg_test_upb_proto_reflection", |
Matt Kulukundis | 61b0905 | 2022-02-19 19:35:58 -0500 | [diff] [blame] | 289 | testonly = 1, |
Joshua Haberman | ce012b7 | 2021-10-01 16:34:42 -0700 | [diff] [blame] | 290 | deps = [":msg_test_proto"], |
| 291 | ) |
| 292 | |
Joshua Haberman | 11b6df0 | 2022-02-15 19:55:44 -0800 | [diff] [blame] | 293 | proto_library( |
| 294 | name = "test_cpp_proto", |
| 295 | srcs = ["upb/test_cpp.proto"], |
Matt Kulukundis | 61b0905 | 2022-02-19 19:35:58 -0500 | [diff] [blame] | 296 | deps = ["@com_google_protobuf//:timestamp_proto"], |
Joshua Haberman | 11b6df0 | 2022-02-15 19:55:44 -0800 | [diff] [blame] | 297 | ) |
| 298 | |
| 299 | upb_proto_library( |
| 300 | name = "test_cpp_upb_proto", |
| 301 | deps = ["test_cpp_proto"], |
| 302 | ) |
| 303 | |
| 304 | upb_proto_reflection_library( |
| 305 | name = "test_cpp_upb_proto_reflection", |
| 306 | deps = ["test_cpp_proto"], |
| 307 | ) |
| 308 | |
Matt Kulukundis | 92d71a4 | 2022-02-20 15:20:48 -0500 | [diff] [blame] | 309 | upb_proto_library( |
| 310 | name = "timestamp_upb_proto", |
| 311 | deps = ["@com_google_protobuf//:timestamp_proto"], |
| 312 | ) |
| 313 | |
| 314 | upb_proto_reflection_library( |
| 315 | name = "timestamp_upb_proto_reflection", |
| 316 | deps = ["@com_google_protobuf//:timestamp_proto"], |
| 317 | ) |
| 318 | |
Joshua Haberman | 11b6df0 | 2022-02-15 19:55:44 -0800 | [diff] [blame] | 319 | cc_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 Kulukundis | 92d71a4 | 2022-02-20 15:20:48 -0500 | [diff] [blame] | 326 | ":timestamp_upb_proto", |
| 327 | ":timestamp_upb_proto_reflection", |
Joshua Haberman | 11b6df0 | 2022-02-15 19:55:44 -0800 | [diff] [blame] | 328 | "//:json", |
| 329 | "//:port", |
| 330 | "//:reflection", |
| 331 | "//:upb", |
| 332 | "@com_google_googletest//:gtest_main", |
| 333 | ], |
| 334 | ) |
| 335 | |
| 336 | cc_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 Haberman | 11b6df0 | 2022-02-15 19:55:44 -0800 | [diff] [blame] | 348 | upb_proto_library( |
| 349 | name = "conformance_proto_upb", |
| 350 | testonly = 1, |
| 351 | deps = ["@com_google_protobuf//:conformance_proto"], |
| 352 | ) |
| 353 | |
| 354 | upb_proto_reflection_library( |
| 355 | name = "conformance_proto_upbdefs", |
| 356 | testonly = 1, |
| 357 | deps = ["@com_google_protobuf//:conformance_proto"], |
| 358 | ) |
| 359 | |
| 360 | upb_proto_reflection_library( |
| 361 | name = "test_messages_proto2_upbdefs", |
| 362 | testonly = 1, |
| 363 | deps = ["@com_google_protobuf//:test_messages_proto2_proto"], |
| 364 | ) |
| 365 | |
| 366 | upb_proto_reflection_library( |
| 367 | name = "test_messages_proto3_upbdefs", |
| 368 | testonly = 1, |
| 369 | deps = ["@com_google_protobuf//:test_messages_proto3_proto"], |
| 370 | ) |
| 371 | |
| 372 | cc_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 | |
| 391 | make_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 | |
| 400 | sh_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 Haberman | 928ef7f | 2019-03-27 12:52:33 -0700 | [diff] [blame] | 411 | # Internal C/C++ libraries ##################################################### |
| 412 | |
| 413 | cc_library( |
| 414 | name = "table", |
Joshua Haberman | cb234e6 | 2020-10-17 17:48:32 -0700 | [diff] [blame] | 415 | hdrs = [ |
Joshua Haberman | 3881393 | 2021-04-05 16:00:25 -0700 | [diff] [blame] | 416 | "upb/table_internal.h", |
Joshua Haberman | efd576b | 2020-10-26 21:37:17 -0700 | [diff] [blame] | 417 | "upb/upb.h", |
Joshua Haberman | cb234e6 | 2020-10-17 17:48:32 -0700 | [diff] [blame] | 418 | ], |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 419 | visibility = ["//tests:__pkg__"], |
Anna R | de1bc11 | 2020-01-07 15:45:19 -0800 | [diff] [blame] | 420 | deps = [ |
| 421 | ":port", |
Anna R | de1bc11 | 2020-01-07 15:45:19 -0800 | [diff] [blame] | 422 | ], |
Joshua Haberman | 928ef7f | 2019-03-27 12:52:33 -0700 | [diff] [blame] | 423 | ) |
| 424 | |
Joshua Haberman | 77371f0 | 2019-01-23 16:26:13 -0800 | [diff] [blame] | 425 | # Amalgamation ################################################################# |
| 426 | |
Joshua Haberman | 83c0edb | 2021-02-28 16:56:49 -0800 | [diff] [blame] | 427 | # copybara:strip_for_google3_begin |
| 428 | |
Joshua Haberman | 77371f0 | 2019-01-23 16:26:13 -0800 | [diff] [blame] | 429 | upb_amalgamation( |
| 430 | name = "gen_amalgamation", |
| 431 | outs = [ |
| 432 | "upb.c", |
| 433 | "upb.h", |
| 434 | ], |
Joshua Haberman | 77371f0 | 2019-01-23 16:26:13 -0800 | [diff] [blame] | 435 | libs = [ |
| 436 | ":upb", |
Joshua Haberman | cb234e6 | 2020-10-17 17:48:32 -0700 | [diff] [blame] | 437 | ":fastdecode", |
Joshua Haberman | 543a0ce | 2020-05-26 22:30:50 -0700 | [diff] [blame] | 438 | ":descriptor_upb_proto", |
Joshua Haberman | 928ef7f | 2019-03-27 12:52:33 -0700 | [diff] [blame] | 439 | ":reflection", |
Anna R | de1bc11 | 2020-01-07 15:45:19 -0800 | [diff] [blame] | 440 | ":port", |
Joshua Haberman | 77371f0 | 2019-01-23 16:26:13 -0800 | [diff] [blame] | 441 | ], |
| 442 | ) |
| 443 | |
| 444 | cc_library( |
| 445 | name = "amalgamation", |
| 446 | srcs = ["upb.c"], |
| 447 | hdrs = ["upb.h"], |
Joshua Haberman | e86541a | 2020-10-28 17:53:09 -0700 | [diff] [blame] | 448 | copts = UPB_DEFAULT_COPTS, |
Joshua Haberman | 4307f5d | 2021-10-11 23:02:32 -0700 | [diff] [blame] | 449 | deps = ["//third_party/utf8_range"], |
Joshua Haberman | 77371f0 | 2019-01-23 16:26:13 -0800 | [diff] [blame] | 450 | ) |
| 451 | |
Joshua Haberman | 16facab | 2020-05-08 16:40:24 -0700 | [diff] [blame] | 452 | upb_amalgamation( |
Joshua Haberman | 543a0ce | 2020-05-26 22:30:50 -0700 | [diff] [blame] | 453 | name = "gen_php_amalgamation", |
Joshua Haberman | 16facab | 2020-05-08 16:40:24 -0700 | [diff] [blame] | 454 | outs = [ |
Joshua Haberman | 543a0ce | 2020-05-26 22:30:50 -0700 | [diff] [blame] | 455 | "php-upb.c", |
| 456 | "php-upb.h", |
Joshua Haberman | 16facab | 2020-05-08 16:40:24 -0700 | [diff] [blame] | 457 | ], |
Joshua Haberman | 16facab | 2020-05-08 16:40:24 -0700 | [diff] [blame] | 458 | libs = [ |
| 459 | ":upb", |
Joshua Haberman | cb234e6 | 2020-10-17 17:48:32 -0700 | [diff] [blame] | 460 | ":fastdecode", |
Joshua Haberman | 543a0ce | 2020-05-26 22:30:50 -0700 | [diff] [blame] | 461 | ":descriptor_upb_proto", |
| 462 | ":descriptor_upb_proto_reflection", |
Joshua Haberman | 16facab | 2020-05-08 16:40:24 -0700 | [diff] [blame] | 463 | ":reflection", |
| 464 | ":port", |
| 465 | ":json", |
| 466 | ], |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 467 | prefix = "php-", |
Joshua Haberman | 16facab | 2020-05-08 16:40:24 -0700 | [diff] [blame] | 468 | ) |
| 469 | |
| 470 | cc_library( |
Joshua Haberman | 543a0ce | 2020-05-26 22:30:50 -0700 | [diff] [blame] | 471 | name = "php_amalgamation", |
| 472 | srcs = ["php-upb.c"], |
| 473 | hdrs = ["php-upb.h"], |
Joshua Haberman | e86541a | 2020-10-28 17:53:09 -0700 | [diff] [blame] | 474 | copts = UPB_DEFAULT_COPTS, |
Joshua Haberman | 4307f5d | 2021-10-11 23:02:32 -0700 | [diff] [blame] | 475 | deps = ["//third_party/utf8_range"], |
Joshua Haberman | 16facab | 2020-05-08 16:40:24 -0700 | [diff] [blame] | 476 | ) |
| 477 | |
Joshua Haberman | efefbff | 2020-08-03 10:12:31 -0700 | [diff] [blame] | 478 | upb_amalgamation( |
| 479 | name = "gen_ruby_amalgamation", |
Joshua Haberman | efefbff | 2020-08-03 10:12:31 -0700 | [diff] [blame] | 480 | outs = [ |
| 481 | "ruby-upb.c", |
| 482 | "ruby-upb.h", |
| 483 | ], |
Joshua Haberman | efefbff | 2020-08-03 10:12:31 -0700 | [diff] [blame] | 484 | libs = [ |
| 485 | ":upb", |
Joshua Haberman | cb234e6 | 2020-10-17 17:48:32 -0700 | [diff] [blame] | 486 | ":fastdecode", |
Joshua Haberman | efefbff | 2020-08-03 10:12:31 -0700 | [diff] [blame] | 487 | ":descriptor_upb_proto", |
| 488 | ":reflection", |
| 489 | ":port", |
| 490 | ":json", |
| 491 | ], |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 492 | prefix = "ruby-", |
Joshua Haberman | efefbff | 2020-08-03 10:12:31 -0700 | [diff] [blame] | 493 | ) |
| 494 | |
| 495 | cc_library( |
| 496 | name = "ruby_amalgamation", |
| 497 | srcs = ["ruby-upb.c"], |
| 498 | hdrs = ["ruby-upb.h"], |
Joshua Haberman | e86541a | 2020-10-28 17:53:09 -0700 | [diff] [blame] | 499 | copts = UPB_DEFAULT_COPTS, |
Joshua Haberman | 4307f5d | 2021-10-11 23:02:32 -0700 | [diff] [blame] | 500 | deps = ["//third_party/utf8_range"], |
Joshua Haberman | efefbff | 2020-08-03 10:12:31 -0700 | [diff] [blame] | 501 | ) |
| 502 | |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 503 | exports_files( |
| 504 | [ |
| 505 | "upb/json/parser.rl", |
| 506 | "BUILD", |
| 507 | "WORKSPACE", |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 508 | ], |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 509 | visibility = ["//cmake:__pkg__"], |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 510 | ) |
| 511 | |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 512 | exports_files( |
| 513 | [ |
Joshua Haberman | bfc86d3 | 2019-12-04 16:56:40 -0800 | [diff] [blame] | 514 | "third_party/lunit/console.lua", |
| 515 | "third_party/lunit/lunit.lua", |
| 516 | ], |
Joshua Haberman | 11b6df0 | 2022-02-15 19:55:44 -0800 | [diff] [blame] | 517 | visibility = ["//upb/bindings/lua:__pkg__"], |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 518 | ) |
| 519 | |
Joshua Haberman | 985145c | 2019-04-24 17:36:17 +0000 | [diff] [blame] | 520 | filegroup( |
| 521 | name = "cmake_files", |
| 522 | srcs = glob([ |
Joshua Haberman | 985145c | 2019-04-24 17:36:17 +0000 | [diff] [blame] | 523 | "google/**/*", |
| 524 | "upbc/**/*", |
| 525 | "upb/**/*", |
| 526 | "tests/**/*", |
Joshua Haberman | 4f901b6 | 2020-10-14 16:32:43 -0700 | [diff] [blame] | 527 | "third_party/**/*", |
Joshua Haberman | 9a66356 | 2019-05-13 16:13:39 -0700 | [diff] [blame] | 528 | ]), |
Joshua Haberman | e3f41de | 2020-10-17 13:15:58 -0700 | [diff] [blame] | 529 | visibility = ["//cmake:__pkg__"], |
Josh Haberman | 01ed4ce | 2018-11-02 12:49:15 -0700 | [diff] [blame] | 530 | ) |
Joshua Haberman | 83c0edb | 2021-02-28 16:56:49 -0800 | [diff] [blame] | 531 | |
| 532 | # copybara:strip_end |