Files
flatbuffers/src/BUILD.bazel
Dan Lapid 872a497464 [Nim] Bfbs Nim Generator (#7534)
* Bfbs Nim Generator

* Remove commented out tests

* add missing line to idl.h

* Commit python reflection changes

* Commit python reflection changes and move tests

* Remove default string addition

* Move tests to python file

* Fix element size check when element is table

* remove whitespace changes

* add element_type docs and commit further to namer and remove kkeep

* Bfbs Nim Generator

* Remove commented out tests

* add missing line to idl.h

* Commit python reflection changes

* Commit python reflection changes and move tests

* Remove default string addition

* Move tests to python file

* Fix element size check when element is table

* remove whitespace changes

* add element_type docs and commit further to namer and remove kkeep

* remove unused variables

* added tests to ci

* added tests to ci

* fixes

* Added reflection type Field, Variable to namer

* Moved reflection namer impl to bfbsnamer

* Remove whitespace at end of line

* Added nim to generated code

* Revert whitespace removal

Co-authored-by: Derek Bailey <derekbailey@google.com>
2022-10-21 14:30:04 -04:00

106 lines
2.7 KiB
Python

# @unused
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
package(
default_visibility = ["//visibility:private"],
)
# Public flatc library to compile flatbuffer files at runtime.
cc_library(
name = "flatbuffers",
srcs = [
"code_generators.cpp",
"idl_gen_fbs.cpp",
"idl_gen_text.cpp",
"idl_parser.cpp",
"reflection.cpp",
"util.cpp",
],
hdrs = ["//:public_headers"],
linkopts = select({
# TODO: Bazel uses `clang` instead of `clang++` to link
# C++ code on BSD. Temporarily adding these linker flags while
# we wait for Bazel to resolve
# https://github.com/bazelbuild/bazel/issues/12023.
"//:platform_freebsd": ["-lm"],
"//:platform_openbsd": ["-lm"],
"//conditions:default": [],
}),
strip_include_prefix = "/include",
visibility = ["//:__pkg__"],
)
# Public flatc compiler library.
cc_library(
name = "flatc_library",
srcs = [
"annotated_binary_text_gen.cpp",
"annotated_binary_text_gen.h",
"bfbs_gen.h",
"bfbs_gen_lua.cpp",
"bfbs_gen_lua.h",
"bfbs_gen_nim.cpp",
"bfbs_gen_nim.h",
"bfbs_namer.h",
"binary_annotator.cpp",
"binary_annotator.h",
"flatc.cpp",
"namer.h",
],
hdrs = [
"//:flatc_headers",
],
strip_include_prefix = "/include",
visibility = ["//:__pkg__"],
deps = [
":flatbuffers",
],
)
# Public flatc compiler.
cc_library(
name = "flatc",
srcs = [
"bfbs_gen.h",
"bfbs_gen_lua.cpp",
"bfbs_gen_lua.h",
"bfbs_gen_nim.cpp",
"bfbs_gen_nim.h",
"bfbs_namer.h",
"flatc_main.cpp",
"idl_gen_cpp.cpp",
"idl_gen_csharp.cpp",
"idl_gen_dart.cpp",
"idl_gen_go.cpp",
"idl_gen_grpc.cpp",
"idl_gen_java.cpp",
"idl_gen_json_schema.cpp",
"idl_gen_kotlin.cpp",
"idl_gen_lobster.cpp",
"idl_gen_lua.cpp",
"idl_gen_php.cpp",
"idl_gen_python.cpp",
"idl_gen_rust.cpp",
"idl_gen_swift.cpp",
"idl_gen_text.cpp",
"idl_gen_ts.cpp",
"idl_namer.h",
"namer.h",
"util.cpp",
],
hdrs = [
"//:flatc_headers",
],
strip_include_prefix = "/include",
visibility = ["//:__pkg__"],
deps = [
":flatc_library",
"//grpc/src/compiler:cpp_generator",
"//grpc/src/compiler:go_generator",
"//grpc/src/compiler:java_generator",
"//grpc/src/compiler:python_generator",
"//grpc/src/compiler:swift_generator",
"//grpc/src/compiler:ts_generator",
],
)