BUILD 25.8 KB
Newer Older
1 2 3 4
# Bazel (http://bazel.io/) BUILD file for Protobuf.

licenses(["notice"])

5 6 7 8
################################################################################
# Protobuf Runtime Library
################################################################################

9 10 11 12 13 14 15 16 17 18 19 20
COPTS = [
    "-DHAVE_PTHREAD",
    "-Wall",
    "-Wwrite-strings",
    "-Woverloaded-virtual",
    "-Wno-sign-compare",
    "-Wno-error=unused-function",
]

# Bazel should provide portable link_opts for pthread.
LINK_OPTS = ["-lpthread"]

21 22 23 24
load(
    "protobuf",
    "cc_proto_library",
    "py_proto_library",
25
    "internal_copied_filegroup",
26 27
    "internal_protobuf_py_tests",
)
28

29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
cc_library(
    name = "protobuf_lite",
    srcs = [
        # AUTOGEN(protobuf_lite_srcs)
        "src/google/protobuf/arena.cc",
        "src/google/protobuf/arenastring.cc",
        "src/google/protobuf/extension_set.cc",
        "src/google/protobuf/generated_message_util.cc",
        "src/google/protobuf/io/coded_stream.cc",
        "src/google/protobuf/io/zero_copy_stream.cc",
        "src/google/protobuf/io/zero_copy_stream_impl_lite.cc",
        "src/google/protobuf/message_lite.cc",
        "src/google/protobuf/repeated_field.cc",
        "src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc",
        "src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc",
44
        "src/google/protobuf/stubs/bytestream.cc",
45
        "src/google/protobuf/stubs/common.cc",
46
        "src/google/protobuf/stubs/int128.cc",
47
        "src/google/protobuf/stubs/once.cc",
48 49 50
        "src/google/protobuf/stubs/status.cc",
        "src/google/protobuf/stubs/statusor.cc",
        "src/google/protobuf/stubs/stringpiece.cc",
51
        "src/google/protobuf/stubs/stringprintf.cc",
52
        "src/google/protobuf/stubs/structurally_valid.cc",
53 54
        "src/google/protobuf/stubs/strutil.cc",
        "src/google/protobuf/stubs/time.cc",
55 56
        "src/google/protobuf/wire_format_lite.cc",
    ],
57
    hdrs = glob(["src/google/protobuf/**/*.h"]),
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
    copts = COPTS,
    includes = ["src/"],
    linkopts = LINK_OPTS,
    visibility = ["//visibility:public"],
)

cc_library(
    name = "protobuf",
    srcs = [
        # AUTOGEN(protobuf_srcs)
        "src/google/protobuf/any.cc",
        "src/google/protobuf/any.pb.cc",
        "src/google/protobuf/api.pb.cc",
        "src/google/protobuf/compiler/importer.cc",
        "src/google/protobuf/compiler/parser.cc",
        "src/google/protobuf/descriptor.cc",
        "src/google/protobuf/descriptor.pb.cc",
        "src/google/protobuf/descriptor_database.cc",
        "src/google/protobuf/duration.pb.cc",
        "src/google/protobuf/dynamic_message.cc",
        "src/google/protobuf/empty.pb.cc",
        "src/google/protobuf/extension_set_heavy.cc",
        "src/google/protobuf/field_mask.pb.cc",
        "src/google/protobuf/generated_message_reflection.cc",
        "src/google/protobuf/io/gzip_stream.cc",
        "src/google/protobuf/io/printer.cc",
        "src/google/protobuf/io/strtod.cc",
        "src/google/protobuf/io/tokenizer.cc",
        "src/google/protobuf/io/zero_copy_stream_impl.cc",
        "src/google/protobuf/map_field.cc",
        "src/google/protobuf/message.cc",
        "src/google/protobuf/reflection_ops.cc",
        "src/google/protobuf/service.cc",
        "src/google/protobuf/source_context.pb.cc",
        "src/google/protobuf/struct.pb.cc",
93
        "src/google/protobuf/stubs/mathlimits.cc",
94 95 96 97 98
        "src/google/protobuf/stubs/substitute.cc",
        "src/google/protobuf/text_format.cc",
        "src/google/protobuf/timestamp.pb.cc",
        "src/google/protobuf/type.pb.cc",
        "src/google/protobuf/unknown_field_set.cc",
99
        "src/google/protobuf/util/field_comparator.cc",
100
        "src/google/protobuf/util/field_mask_util.cc",
101 102 103 104 105 106 107 108
        "src/google/protobuf/util/internal/datapiece.cc",
        "src/google/protobuf/util/internal/default_value_objectwriter.cc",
        "src/google/protobuf/util/internal/error_listener.cc",
        "src/google/protobuf/util/internal/field_mask_utility.cc",
        "src/google/protobuf/util/internal/json_escaping.cc",
        "src/google/protobuf/util/internal/json_objectwriter.cc",
        "src/google/protobuf/util/internal/json_stream_parser.cc",
        "src/google/protobuf/util/internal/object_writer.cc",
Feng Xiao's avatar
Feng Xiao committed
109
        "src/google/protobuf/util/internal/proto_writer.cc",
110 111 112 113 114 115 116
        "src/google/protobuf/util/internal/protostream_objectsource.cc",
        "src/google/protobuf/util/internal/protostream_objectwriter.cc",
        "src/google/protobuf/util/internal/type_info.cc",
        "src/google/protobuf/util/internal/type_info_test_helper.cc",
        "src/google/protobuf/util/internal/utility.cc",
        "src/google/protobuf/util/json_util.cc",
        "src/google/protobuf/util/message_differencer.cc",
117
        "src/google/protobuf/util/time_util.cc",
118
        "src/google/protobuf/util/type_resolver_util.cc",
119 120 121
        "src/google/protobuf/wire_format.cc",
        "src/google/protobuf/wrappers.pb.cc",
    ],
Lukacs T. Berki's avatar
Lukacs T. Berki committed
122
    hdrs = glob(["src/**/*.h"]),
123 124 125 126 127 128 129
    copts = COPTS,
    includes = ["src/"],
    linkopts = LINK_OPTS,
    visibility = ["//visibility:public"],
    deps = [":protobuf_lite"],
)

Jisi Liu's avatar
Jisi Liu committed
130 131 132 133 134 135 136
objc_library(
    name = "protobuf_objc",
    hdrs = ["objectivec/GPBProtocolBuffers.h"],
    includes = ["objectivec"],
    non_arc_srcs = ["objectivec/GPBProtocolBuffers.m"],
    visibility = ["//visibility:public"],
)
137

Jisi Liu's avatar
Jisi Liu committed
138
RELATIVE_WELL_KNOWN_PROTOS = [
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
    # AUTOGEN(well_known_protos)
    "google/protobuf/any.proto",
    "google/protobuf/api.proto",
    "google/protobuf/compiler/plugin.proto",
    "google/protobuf/descriptor.proto",
    "google/protobuf/duration.proto",
    "google/protobuf/empty.proto",
    "google/protobuf/field_mask.proto",
    "google/protobuf/source_context.proto",
    "google/protobuf/struct.proto",
    "google/protobuf/timestamp.proto",
    "google/protobuf/type.proto",
    "google/protobuf/wrappers.proto",
]

Jisi Liu's avatar
Jisi Liu committed
154 155
WELL_KNOWN_PROTOS = ["src/" + s for s in RELATIVE_WELL_KNOWN_PROTOS]

156 157
cc_proto_library(
    name = "cc_wkt_protos",
Jisi Liu's avatar
Jisi Liu committed
158
    srcs = WELL_KNOWN_PROTOS,
159
    include = "src",
160
    default_runtime = ":protobuf",
Jisi Liu's avatar
Jisi Liu committed
161
    internal_bootstrap_hack = 1,
162
    protoc = ":protoc",
163
    visibility = ["//visibility:public"],
164 165
)

166 167 168 169
################################################################################
# Protocol Buffers Compiler
################################################################################

170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
cc_library(
    name = "protoc_lib",
    srcs = [
        # AUTOGEN(protoc_lib_srcs)
        "src/google/protobuf/compiler/code_generator.cc",
        "src/google/protobuf/compiler/command_line_interface.cc",
        "src/google/protobuf/compiler/cpp/cpp_enum.cc",
        "src/google/protobuf/compiler/cpp/cpp_enum_field.cc",
        "src/google/protobuf/compiler/cpp/cpp_extension.cc",
        "src/google/protobuf/compiler/cpp/cpp_field.cc",
        "src/google/protobuf/compiler/cpp/cpp_file.cc",
        "src/google/protobuf/compiler/cpp/cpp_generator.cc",
        "src/google/protobuf/compiler/cpp/cpp_helpers.cc",
        "src/google/protobuf/compiler/cpp/cpp_map_field.cc",
        "src/google/protobuf/compiler/cpp/cpp_message.cc",
        "src/google/protobuf/compiler/cpp/cpp_message_field.cc",
        "src/google/protobuf/compiler/cpp/cpp_primitive_field.cc",
        "src/google/protobuf/compiler/cpp/cpp_service.cc",
        "src/google/protobuf/compiler/cpp/cpp_string_field.cc",
189
        "src/google/protobuf/compiler/csharp/csharp_doc_comment.cc",
190 191 192 193 194
        "src/google/protobuf/compiler/csharp/csharp_enum.cc",
        "src/google/protobuf/compiler/csharp/csharp_enum_field.cc",
        "src/google/protobuf/compiler/csharp/csharp_field_base.cc",
        "src/google/protobuf/compiler/csharp/csharp_generator.cc",
        "src/google/protobuf/compiler/csharp/csharp_helpers.cc",
195
        "src/google/protobuf/compiler/csharp/csharp_map_field.cc",
196 197 198
        "src/google/protobuf/compiler/csharp/csharp_message.cc",
        "src/google/protobuf/compiler/csharp/csharp_message_field.cc",
        "src/google/protobuf/compiler/csharp/csharp_primitive_field.cc",
199
        "src/google/protobuf/compiler/csharp/csharp_reflection_class.cc",
200 201 202 203
        "src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc",
        "src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc",
        "src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc",
        "src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc",
204
        "src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc",
205 206 207 208 209
        "src/google/protobuf/compiler/java/java_context.cc",
        "src/google/protobuf/compiler/java/java_doc_comment.cc",
        "src/google/protobuf/compiler/java/java_enum.cc",
        "src/google/protobuf/compiler/java/java_enum_field.cc",
        "src/google/protobuf/compiler/java/java_enum_field_lite.cc",
210
        "src/google/protobuf/compiler/java/java_enum_lite.cc",
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
        "src/google/protobuf/compiler/java/java_extension.cc",
        "src/google/protobuf/compiler/java/java_field.cc",
        "src/google/protobuf/compiler/java/java_file.cc",
        "src/google/protobuf/compiler/java/java_generator.cc",
        "src/google/protobuf/compiler/java/java_generator_factory.cc",
        "src/google/protobuf/compiler/java/java_helpers.cc",
        "src/google/protobuf/compiler/java/java_lazy_message_field.cc",
        "src/google/protobuf/compiler/java/java_lazy_message_field_lite.cc",
        "src/google/protobuf/compiler/java/java_map_field.cc",
        "src/google/protobuf/compiler/java/java_map_field_lite.cc",
        "src/google/protobuf/compiler/java/java_message.cc",
        "src/google/protobuf/compiler/java/java_message_builder.cc",
        "src/google/protobuf/compiler/java/java_message_builder_lite.cc",
        "src/google/protobuf/compiler/java/java_message_field.cc",
        "src/google/protobuf/compiler/java/java_message_field_lite.cc",
        "src/google/protobuf/compiler/java/java_message_lite.cc",
        "src/google/protobuf/compiler/java/java_name_resolver.cc",
        "src/google/protobuf/compiler/java/java_primitive_field.cc",
        "src/google/protobuf/compiler/java/java_primitive_field_lite.cc",
        "src/google/protobuf/compiler/java/java_service.cc",
        "src/google/protobuf/compiler/java/java_shared_code_generator.cc",
        "src/google/protobuf/compiler/java/java_string_field.cc",
        "src/google/protobuf/compiler/java/java_string_field_lite.cc",
        "src/google/protobuf/compiler/javanano/javanano_enum.cc",
        "src/google/protobuf/compiler/javanano/javanano_enum_field.cc",
        "src/google/protobuf/compiler/javanano/javanano_extension.cc",
        "src/google/protobuf/compiler/javanano/javanano_field.cc",
        "src/google/protobuf/compiler/javanano/javanano_file.cc",
        "src/google/protobuf/compiler/javanano/javanano_generator.cc",
        "src/google/protobuf/compiler/javanano/javanano_helpers.cc",
        "src/google/protobuf/compiler/javanano/javanano_map_field.cc",
        "src/google/protobuf/compiler/javanano/javanano_message.cc",
        "src/google/protobuf/compiler/javanano/javanano_message_field.cc",
        "src/google/protobuf/compiler/javanano/javanano_primitive_field.cc",
Feng Xiao's avatar
Feng Xiao committed
245
        "src/google/protobuf/compiler/js/js_generator.cc",
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
        "src/google/protobuf/compiler/objectivec/objectivec_enum.cc",
        "src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc",
        "src/google/protobuf/compiler/objectivec/objectivec_extension.cc",
        "src/google/protobuf/compiler/objectivec/objectivec_field.cc",
        "src/google/protobuf/compiler/objectivec/objectivec_file.cc",
        "src/google/protobuf/compiler/objectivec/objectivec_generator.cc",
        "src/google/protobuf/compiler/objectivec/objectivec_helpers.cc",
        "src/google/protobuf/compiler/objectivec/objectivec_map_field.cc",
        "src/google/protobuf/compiler/objectivec/objectivec_message.cc",
        "src/google/protobuf/compiler/objectivec/objectivec_message_field.cc",
        "src/google/protobuf/compiler/objectivec/objectivec_oneof.cc",
        "src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc",
        "src/google/protobuf/compiler/plugin.cc",
        "src/google/protobuf/compiler/plugin.pb.cc",
        "src/google/protobuf/compiler/python/python_generator.cc",
        "src/google/protobuf/compiler/ruby/ruby_generator.cc",
        "src/google/protobuf/compiler/subprocess.cc",
        "src/google/protobuf/compiler/zip_writer.cc",
    ],
    copts = COPTS,
    includes = ["src/"],
    linkopts = LINK_OPTS,
    visibility = ["//visibility:public"],
    deps = [":protobuf"],
)

cc_binary(
    name = "protoc",
    srcs = ["src/google/protobuf/compiler/main.cc"],
    linkopts = LINK_OPTS,
    visibility = ["//visibility:public"],
    deps = [":protoc_lib"],
)

################################################################################
# Tests
################################################################################

Jisi Liu's avatar
Jisi Liu committed
284
RELATIVE_LITE_TEST_PROTOS = [
285 286 287 288 289
    # AUTOGEN(lite_test_protos)
    "google/protobuf/map_lite_unittest.proto",
    "google/protobuf/unittest_import_lite.proto",
    "google/protobuf/unittest_import_public_lite.proto",
    "google/protobuf/unittest_lite.proto",
290
    "google/protobuf/unittest_no_arena_lite.proto",
291 292
]

Jisi Liu's avatar
Jisi Liu committed
293 294 295
LITE_TEST_PROTOS = ["src/" + s for s in RELATIVE_LITE_TEST_PROTOS]

RELATIVE_TEST_PROTOS = [
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
    # AUTOGEN(test_protos)
    "google/protobuf/any_test.proto",
    "google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto",
    "google/protobuf/compiler/cpp/cpp_test_large_enum_value.proto",
    "google/protobuf/map_proto2_unittest.proto",
    "google/protobuf/map_unittest.proto",
    "google/protobuf/unittest.proto",
    "google/protobuf/unittest_arena.proto",
    "google/protobuf/unittest_custom_options.proto",
    "google/protobuf/unittest_drop_unknown_fields.proto",
    "google/protobuf/unittest_embed_optimize_for.proto",
    "google/protobuf/unittest_empty.proto",
    "google/protobuf/unittest_enormous_descriptor.proto",
    "google/protobuf/unittest_import.proto",
    "google/protobuf/unittest_import_public.proto",
    "google/protobuf/unittest_lite_imports_nonlite.proto",
    "google/protobuf/unittest_mset.proto",
313
    "google/protobuf/unittest_mset_wire_format.proto",
314 315 316 317 318 319 320 321 322
    "google/protobuf/unittest_no_arena.proto",
    "google/protobuf/unittest_no_arena_import.proto",
    "google/protobuf/unittest_no_field_presence.proto",
    "google/protobuf/unittest_no_generic_services.proto",
    "google/protobuf/unittest_optimize_for.proto",
    "google/protobuf/unittest_preserve_unknown_enum.proto",
    "google/protobuf/unittest_preserve_unknown_enum2.proto",
    "google/protobuf/unittest_proto3_arena.proto",
    "google/protobuf/unittest_well_known_types.proto",
323 324 325 326 327 328
    "google/protobuf/util/internal/testdata/anys.proto",
    "google/protobuf/util/internal/testdata/books.proto",
    "google/protobuf/util/internal/testdata/default_value.proto",
    "google/protobuf/util/internal/testdata/default_value_test.proto",
    "google/protobuf/util/internal/testdata/field_mask.proto",
    "google/protobuf/util/internal/testdata/maps.proto",
329
    "google/protobuf/util/internal/testdata/oneofs.proto",
330 331 332
    "google/protobuf/util/internal/testdata/struct.proto",
    "google/protobuf/util/internal/testdata/timestamp_duration.proto",
    "google/protobuf/util/json_format_proto3.proto",
Feng Xiao's avatar
Feng Xiao committed
333
    "google/protobuf/util/message_differencer_unittest.proto",
334 335
]

Jisi Liu's avatar
Jisi Liu committed
336 337
TEST_PROTOS = ["src/" + s for s in RELATIVE_TEST_PROTOS]

338 339
cc_proto_library(
    name = "cc_test_protos",
Jisi Liu's avatar
Jisi Liu committed
340
    srcs = LITE_TEST_PROTOS + TEST_PROTOS,
341
    include = "src",
342
    default_runtime = ":protobuf",
343
    protoc = ":protoc",
344
    deps = [":cc_wkt_protos"],
345 346 347 348 349 350 351 352 353 354 355
)

COMMON_TEST_SRCS = [
    # AUTOGEN(common_test_srcs)
    "src/google/protobuf/arena_test_util.cc",
    "src/google/protobuf/map_test_util.cc",
    "src/google/protobuf/test_util.cc",
    "src/google/protobuf/testing/file.cc",
    "src/google/protobuf/testing/googletest.cc",
]

356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
cc_binary(
    name = "test_plugin",
    srcs = [
        # AUTOGEN(test_plugin_srcs)
        "src/google/protobuf/compiler/mock_code_generator.cc",
        "src/google/protobuf/compiler/test_plugin.cc",
        "src/google/protobuf/testing/file.cc",
    ],
    deps = [
        ":protobuf",
        ":protoc_lib",
        "//external:gtest",
    ],
)

cc_test(
    name = "protobuf_test",
373
    srcs = COMMON_TEST_SRCS + [
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
        # AUTOGEN(test_srcs)
        "src/google/protobuf/any_test.cc",
        "src/google/protobuf/arena_unittest.cc",
        "src/google/protobuf/arenastring_unittest.cc",
        "src/google/protobuf/compiler/command_line_interface_unittest.cc",
        "src/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc",
        "src/google/protobuf/compiler/cpp/cpp_plugin_unittest.cc",
        "src/google/protobuf/compiler/cpp/cpp_unittest.cc",
        "src/google/protobuf/compiler/csharp/csharp_generator_unittest.cc",
        "src/google/protobuf/compiler/importer_unittest.cc",
        "src/google/protobuf/compiler/java/java_doc_comment_unittest.cc",
        "src/google/protobuf/compiler/java/java_plugin_unittest.cc",
        "src/google/protobuf/compiler/mock_code_generator.cc",
        "src/google/protobuf/compiler/objectivec/objectivec_helpers_unittest.cc",
        "src/google/protobuf/compiler/parser_unittest.cc",
        "src/google/protobuf/compiler/python/python_plugin_unittest.cc",
        "src/google/protobuf/compiler/ruby/ruby_generator_unittest.cc",
        "src/google/protobuf/descriptor_database_unittest.cc",
        "src/google/protobuf/descriptor_unittest.cc",
        "src/google/protobuf/drop_unknown_fields_test.cc",
        "src/google/protobuf/dynamic_message_unittest.cc",
        "src/google/protobuf/extension_set_unittest.cc",
        "src/google/protobuf/generated_message_reflection_unittest.cc",
        "src/google/protobuf/io/coded_stream_unittest.cc",
        "src/google/protobuf/io/printer_unittest.cc",
        "src/google/protobuf/io/tokenizer_unittest.cc",
        "src/google/protobuf/io/zero_copy_stream_unittest.cc",
        "src/google/protobuf/map_field_test.cc",
        "src/google/protobuf/map_test.cc",
        "src/google/protobuf/message_unittest.cc",
        "src/google/protobuf/no_field_presence_test.cc",
        "src/google/protobuf/preserve_unknown_enum_test.cc",
        "src/google/protobuf/proto3_arena_unittest.cc",
        "src/google/protobuf/reflection_ops_unittest.cc",
        "src/google/protobuf/repeated_field_reflection_unittest.cc",
        "src/google/protobuf/repeated_field_unittest.cc",
        "src/google/protobuf/stubs/bytestream_unittest.cc",
        "src/google/protobuf/stubs/common_unittest.cc",
412
        "src/google/protobuf/stubs/int128_unittest.cc",
413 414 415 416 417 418 419 420 421 422 423 424 425
        "src/google/protobuf/stubs/once_unittest.cc",
        "src/google/protobuf/stubs/status_test.cc",
        "src/google/protobuf/stubs/statusor_test.cc",
        "src/google/protobuf/stubs/stringpiece_unittest.cc",
        "src/google/protobuf/stubs/stringprintf_unittest.cc",
        "src/google/protobuf/stubs/structurally_valid_unittest.cc",
        "src/google/protobuf/stubs/strutil_unittest.cc",
        "src/google/protobuf/stubs/template_util_unittest.cc",
        "src/google/protobuf/stubs/time_test.cc",
        "src/google/protobuf/stubs/type_traits_unittest.cc",
        "src/google/protobuf/text_format_unittest.cc",
        "src/google/protobuf/unknown_field_set_unittest.cc",
        "src/google/protobuf/util/field_comparator_test.cc",
426
        "src/google/protobuf/util/field_mask_util_test.cc",
427 428 429 430 431 432 433
        "src/google/protobuf/util/internal/default_value_objectwriter_test.cc",
        "src/google/protobuf/util/internal/json_objectwriter_test.cc",
        "src/google/protobuf/util/internal/json_stream_parser_test.cc",
        "src/google/protobuf/util/internal/protostream_objectsource_test.cc",
        "src/google/protobuf/util/internal/protostream_objectwriter_test.cc",
        "src/google/protobuf/util/internal/type_info_test_helper.cc",
        "src/google/protobuf/util/json_util_test.cc",
Feng Xiao's avatar
Feng Xiao committed
434
        "src/google/protobuf/util/message_differencer_unittest.cc",
435
        "src/google/protobuf/util/time_util_test.cc",
436 437 438 439 440 441 442
        "src/google/protobuf/util/type_resolver_util_test.cc",
        "src/google/protobuf/well_known_types_unittest.cc",
        "src/google/protobuf/wire_format_unittest.cc",
    ],
    copts = COPTS,
    data = [
        ":test_plugin",
443 444 445
    ] + glob([
        "src/google/protobuf/**/*",
    ]),
446 447 448 449 450
    includes = [
        "src/",
    ],
    linkopts = LINK_OPTS,
    deps = [
Jisi Liu's avatar
Jisi Liu committed
451
        ":cc_test_protos",
452 453 454 455 456
        ":protobuf",
        ":protoc_lib",
        "//external:gtest_main",
    ],
)
Jisi Liu's avatar
Jisi Liu committed
457 458 459 460 461

################################################################################
# Java support
################################################################################
genrule(
Ming Zhao's avatar
Ming Zhao committed
462 463 464
    name = "gen_well_known_protos_java",
    srcs = WELL_KNOWN_PROTOS,
    outs = [
465
        "wellknown.srcjar",
Ming Zhao's avatar
Ming Zhao committed
466 467
    ],
    cmd = "$(location :protoc) --java_out=$(@D)/wellknown.jar" +
468 469
          " -Isrc $(SRCS) " +
          " && mv $(@D)/wellknown.jar $(@D)/wellknown.srcjar",
Jisi Liu's avatar
Jisi Liu committed
470 471 472 473
    tools = [":protoc"],
)

java_library(
474
    name = "protobuf_java",
Jisi Liu's avatar
Jisi Liu committed
475
    srcs = glob([
Ming Zhao's avatar
Ming Zhao committed
476
        "java/core/src/main/java/com/google/protobuf/*.java",
Jisi Liu's avatar
Jisi Liu committed
477
    ]) + [
Ming Zhao's avatar
Ming Zhao committed
478
        ":gen_well_known_protos_java",
Jisi Liu's avatar
Jisi Liu committed
479 480 481 482 483 484 485 486
    ],
    visibility = ["//visibility:public"],
)

################################################################################
# Python support
################################################################################

Jisi Liu's avatar
Jisi Liu committed
487 488 489 490 491 492 493 494 495 496 497
# Hack:
# protoc generated files contain imports like:
#   "from google.protobuf.xxx import yyy"
# However, the sources files of the python runtime are not directly under
# "google/protobuf" (they are under python/google/protobuf).  We workaround
# this by copying runtime source files into the desired location to workaround
# the import issue. Ideally py_library should support something similiar to the
# "include" attribute in cc_library to inject the PYTHON_PATH for all libraries
# that depend on the target.
#
# If you use python protobuf as a third_party library in your bazel managed
Jisi Liu's avatar
Jisi Liu committed
498 499
# project:
# 1) Please import the whole package to //google/protobuf in your
Jisi Liu's avatar
Jisi Liu committed
500 501 502
# project. Otherwise, bazel disallows generated files out of the current
# package, thus we won't be able to copy protobuf runtime files into
# //google/protobuf/.
Jisi Liu's avatar
Jisi Liu committed
503 504
# 2) The runtime also requires "six" for Python2/3 compatibility, please see the
# WORKSPACE file and bind "six" to your workspace as well.
505
internal_copied_filegroup(
Jisi Liu's avatar
Jisi Liu committed
506 507 508 509 510 511 512 513 514 515 516 517 518 519
    name = "python_srcs",
    srcs = glob(
        [
            "python/google/protobuf/*.py",
            "python/google/protobuf/**/*.py",
        ],
        exclude = [
            "python/google/protobuf/internal/*_test.py",
            "python/google/protobuf/internal/test_util.py",
        ],
    ),
    include = "python",
)

520
cc_binary(
521
    name = "internal/_api_implementation.so",
522 523 524 525 526 527
    srcs = ["python/google/protobuf/internal/api_implementation.cc"],
    copts = COPTS + [
        "-DPYTHON_PROTO2_CPP_IMPL_V2",
    ],
    linkshared = 1,
    linkstatic = 1,
528 529 530 531
    deps = select({
        "//conditions:default": [],
        ":use_fast_cpp_protos": ["//util/python:python_headers"],
    }),
532 533 534
)

cc_binary(
535
    name = "pyext/_message.so",
536 537 538 539 540 541
    srcs = glob([
        "python/google/protobuf/pyext/*.cc",
        "python/google/protobuf/pyext/*.h",
    ]),
    copts = COPTS + [
        "-DGOOGLE_PROTOBUF_HAS_ONEOF=1",
542 543 544 545
    ] + select({
        "//conditions:default": [],
        ":allow_oversize_protos": ["-DPROTOBUF_PYTHON_ALLOW_OVERSIZE_PROTOS=1"],
    }),
546 547 548 549 550 551
    includes = [
        "python/",
        "src/",
    ],
    linkshared = 1,
    linkstatic = 1,
552 553 554 555 556 557 558 559 560 561 562 563 564
    deps = [
        ":protobuf",
    ] + select({
        "//conditions:default": [],
        ":use_fast_cpp_protos": ["//util/python:python_headers"],
    }),
)

config_setting(
    name = "use_fast_cpp_protos",
    values = {
        "define": "use_fast_cpp_protos=true",
    },
565 566
)

567 568 569 570 571 572 573
config_setting(
    name = "allow_oversize_protos",
    values = {
        "define": "allow_oversize_protos=true",
    },
)

Jisi Liu's avatar
Jisi Liu committed
574
py_proto_library(
575
    name = "protobuf_python",
Jisi Liu's avatar
Jisi Liu committed
576 577
    srcs = WELL_KNOWN_PROTOS,
    include = "src",
578 579 580
    data = select({
        "//conditions:default": [],
        ":use_fast_cpp_protos": [
581 582
            ":internal/_api_implementation.so",
            ":pyext/_message.so",
583 584
        ],
    }),
585
    default_runtime = "",
586
    protoc = ":protoc",
Jisi Liu's avatar
Jisi Liu committed
587
    py_extra_srcs = [":python_srcs"],
Jisi Liu's avatar
Jisi Liu committed
588
    py_libs = ["//external:six"],
589
    srcs_version = "PY2AND3",
Jisi Liu's avatar
Jisi Liu committed
590 591 592
    visibility = ["//visibility:public"],
)

593
internal_copied_filegroup(
Jisi Liu's avatar
Jisi Liu committed
594 595 596 597 598 599 600 601 602 603 604 605 606 607
    name = "python_test_srcs",
    srcs = glob(
        [
            "python/google/protobuf/internal/*_test.py",
            "python/google/protobuf/internal/test_util.py",
        ],
    ),
    include = "python",
)

py_proto_library(
    name = "python_common_test_protos",
    srcs = LITE_TEST_PROTOS + TEST_PROTOS,
    include = "src",
608
    default_runtime = "",
609
    protoc = ":protoc",
610
    deps = [":protobuf_python"],
Jisi Liu's avatar
Jisi Liu committed
611 612 613 614
)

py_proto_library(
    name = "python_specific_test_protos",
615 616 617 618
    srcs = glob([
        "python/google/protobuf/internal/*.proto",
        "python/google/protobuf/internal/import_test_package/*.proto",
    ]),
Jisi Liu's avatar
Jisi Liu committed
619
    include = "python",
620
    default_runtime = ":protobuf_python",
621
    protoc = ":protoc",
Jisi Liu's avatar
Jisi Liu committed
622 623 624 625 626 627
    deps = [":python_common_test_protos"],
)

py_library(
    name = "python_tests",
    srcs = [":python_test_srcs"],
628
    srcs_version = "PY2AND3",
Jisi Liu's avatar
Jisi Liu committed
629
    deps = [
630
        ":protobuf_python",
631
        ":python_common_test_protos",
Jisi Liu's avatar
Jisi Liu committed
632 633 634 635 636
        ":python_specific_test_protos",
    ],
)

internal_protobuf_py_tests(
Jisi Liu's avatar
Jisi Liu committed
637
    name = "python_tests_batch",
638 639 640
    data = glob([
        "src/google/protobuf/**/*",
    ]),
Jisi Liu's avatar
Jisi Liu committed
641 642 643 644 645 646 647
    modules = [
        "descriptor_database_test",
        "descriptor_pool_test",
        "descriptor_test",
        "generator_test",
        "json_format_test",
        "message_factory_test",
648
        "message_test",
Jisi Liu's avatar
Jisi Liu committed
649
        "proto_builder_test",
650
        "reflection_test",
Jisi Liu's avatar
Jisi Liu committed
651 652 653
        "service_reflection_test",
        "symbol_database_test",
        "text_encoding_test",
654
        "text_format_test",
Jisi Liu's avatar
Jisi Liu committed
655 656 657 658 659
        "unknown_fields_test",
        "wire_format_test",
    ],
    deps = [":python_tests"],
)