2022-09-06 23:29:51 +02:00
|
|
|
load("@build_bazel_rules_android//android:rules.bzl", "android_library")
|
|
|
|
load(":build_defs.bzl", "flatbuffer_py_strip_prefix_srcs")
|
|
|
|
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
|
|
|
|
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
|
|
|
|
exports_files(["LICENSE.txt"])
|
|
|
|
|
|
|
|
licenses(["notice"])
|
|
|
|
|
|
|
|
config_setting(
|
|
|
|
name = "platform_freebsd",
|
|
|
|
values = {"cpu": "freebsd"},
|
|
|
|
)
|
|
|
|
|
|
|
|
config_setting(
|
|
|
|
name = "platform_openbsd",
|
|
|
|
values = {"cpu": "openbsd"},
|
|
|
|
)
|
|
|
|
|
|
|
|
config_setting(
|
|
|
|
name = "windows",
|
|
|
|
values = {"cpu": "x64_windows"},
|
|
|
|
)
|
|
|
|
|
|
|
|
# Public flatc library to compile flatbuffer files at runtime.
|
|
|
|
cc_library(
|
|
|
|
name = "flatbuffers",
|
|
|
|
hdrs = ["//:public_headers"],
|
|
|
|
linkstatic = 1,
|
|
|
|
strip_include_prefix = "/include",
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
deps = ["//src:flatbuffers"],
|
|
|
|
)
|
|
|
|
|
|
|
|
# Public C++ headers for the Flatbuffers library.
|
|
|
|
filegroup(
|
|
|
|
name = "public_headers",
|
|
|
|
srcs = [
|
|
|
|
"include/flatbuffers/allocator.h",
|
|
|
|
"include/flatbuffers/array.h",
|
|
|
|
"include/flatbuffers/base.h",
|
|
|
|
"include/flatbuffers/buffer.h",
|
|
|
|
"include/flatbuffers/buffer_ref.h",
|
2023-04-14 23:48:21 +02:00
|
|
|
"include/flatbuffers/code_generator.h",
|
2022-09-06 23:29:51 +02:00
|
|
|
"include/flatbuffers/code_generators.h",
|
|
|
|
"include/flatbuffers/default_allocator.h",
|
|
|
|
"include/flatbuffers/detached_buffer.h",
|
2023-05-17 22:34:46 +02:00
|
|
|
"include/flatbuffers/file_manager.h",
|
2022-09-06 23:29:51 +02:00
|
|
|
"include/flatbuffers/flatbuffer_builder.h",
|
|
|
|
"include/flatbuffers/flatbuffers.h",
|
2023-04-14 23:48:21 +02:00
|
|
|
"include/flatbuffers/flex_flat_util.h",
|
2022-09-06 23:29:51 +02:00
|
|
|
"include/flatbuffers/flexbuffers.h",
|
2023-04-14 23:48:21 +02:00
|
|
|
"include/flatbuffers/grpc.h",
|
2022-09-06 23:29:51 +02:00
|
|
|
"include/flatbuffers/hash.h",
|
|
|
|
"include/flatbuffers/idl.h",
|
|
|
|
"include/flatbuffers/minireflect.h",
|
|
|
|
"include/flatbuffers/reflection.h",
|
|
|
|
"include/flatbuffers/reflection_generated.h",
|
|
|
|
"include/flatbuffers/registry.h",
|
|
|
|
"include/flatbuffers/stl_emulation.h",
|
|
|
|
"include/flatbuffers/string.h",
|
|
|
|
"include/flatbuffers/struct.h",
|
|
|
|
"include/flatbuffers/table.h",
|
|
|
|
"include/flatbuffers/util.h",
|
|
|
|
"include/flatbuffers/vector.h",
|
|
|
|
"include/flatbuffers/vector_downward.h",
|
|
|
|
"include/flatbuffers/verifier.h",
|
|
|
|
],
|
|
|
|
visibility = ["//:__subpackages__"],
|
|
|
|
)
|
|
|
|
|
|
|
|
# Public flatc compiler library.
|
|
|
|
cc_library(
|
|
|
|
name = "flatc_library",
|
|
|
|
linkstatic = 1,
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
deps = [
|
|
|
|
"@flatbuffers//src:flatc_library",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
# Public flatc compiler.
|
|
|
|
cc_binary(
|
|
|
|
name = "flatc",
|
|
|
|
linkopts = select({
|
|
|
|
":platform_freebsd": [
|
|
|
|
"-lm",
|
|
|
|
],
|
|
|
|
":windows": [],
|
|
|
|
"//conditions:default": [
|
|
|
|
"-lm",
|
|
|
|
"-ldl",
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
deps = [
|
|
|
|
"@flatbuffers//src:flatc",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
filegroup(
|
|
|
|
name = "flatc_headers",
|
|
|
|
srcs = [
|
|
|
|
"include/flatbuffers/flatc.h",
|
|
|
|
],
|
|
|
|
visibility = ["//:__subpackages__"],
|
|
|
|
)
|
|
|
|
|
|
|
|
# Library used by flatbuffer_cc_library rules.
|
|
|
|
cc_library(
|
|
|
|
name = "runtime_cc",
|
|
|
|
hdrs = [
|
|
|
|
"include/flatbuffers/allocator.h",
|
|
|
|
"include/flatbuffers/array.h",
|
|
|
|
"include/flatbuffers/base.h",
|
|
|
|
"include/flatbuffers/buffer.h",
|
|
|
|
"include/flatbuffers/buffer_ref.h",
|
|
|
|
"include/flatbuffers/default_allocator.h",
|
|
|
|
"include/flatbuffers/detached_buffer.h",
|
|
|
|
"include/flatbuffers/flatbuffer_builder.h",
|
|
|
|
"include/flatbuffers/flatbuffers.h",
|
|
|
|
"include/flatbuffers/flexbuffers.h",
|
|
|
|
"include/flatbuffers/stl_emulation.h",
|
|
|
|
"include/flatbuffers/string.h",
|
|
|
|
"include/flatbuffers/struct.h",
|
|
|
|
"include/flatbuffers/table.h",
|
|
|
|
"include/flatbuffers/util.h",
|
|
|
|
"include/flatbuffers/vector.h",
|
|
|
|
"include/flatbuffers/vector_downward.h",
|
|
|
|
"include/flatbuffers/verifier.h",
|
|
|
|
],
|
|
|
|
linkstatic = 1,
|
|
|
|
strip_include_prefix = "/include",
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|
|
|
|
|
|
|
|
flatbuffer_py_strip_prefix_srcs(
|
|
|
|
name = "flatbuffer_py_strip_prefix",
|
|
|
|
srcs = [
|
|
|
|
"python/flatbuffers/__init__.py",
|
|
|
|
"python/flatbuffers/_version.py",
|
|
|
|
"python/flatbuffers/builder.py",
|
|
|
|
"python/flatbuffers/compat.py",
|
|
|
|
"python/flatbuffers/encode.py",
|
|
|
|
"python/flatbuffers/flexbuffers.py",
|
|
|
|
"python/flatbuffers/number_types.py",
|
|
|
|
"python/flatbuffers/packer.py",
|
|
|
|
"python/flatbuffers/table.py",
|
|
|
|
"python/flatbuffers/util.py",
|
|
|
|
],
|
|
|
|
strip_prefix = "python/flatbuffers/",
|
|
|
|
)
|
|
|
|
|
|
|
|
filegroup(
|
|
|
|
name = "runtime_py_srcs",
|
|
|
|
srcs = [
|
|
|
|
"__init__.py",
|
|
|
|
"_version.py",
|
|
|
|
"builder.py",
|
|
|
|
"compat.py",
|
|
|
|
"encode.py",
|
|
|
|
"flexbuffers.py",
|
|
|
|
"number_types.py",
|
|
|
|
"packer.py",
|
|
|
|
"table.py",
|
|
|
|
"util.py",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
py_library(
|
|
|
|
name = "runtime_py",
|
|
|
|
srcs = [":runtime_py_srcs"],
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|
|
|
|
|
|
|
|
filegroup(
|
|
|
|
name = "runtime_java_srcs",
|
|
|
|
srcs = glob(["java/com/google/flatbuffers/**/*.java"]),
|
|
|
|
)
|
|
|
|
|
|
|
|
java_library(
|
|
|
|
name = "runtime_java",
|
|
|
|
srcs = [":runtime_java_srcs"],
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|
|
|
|
|
|
|
|
android_library(
|
|
|
|
name = "runtime_android",
|
|
|
|
srcs = [":runtime_java_srcs"],
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|