forked from BigfootDev/flatbuffers
* [TS/JS] Entry point per namespace * Fix handling of outputpath and array_test * Attempt to fix generate_code * Fix cwd for ts in generate_code * Attempt to fixup bazel and some docs * Add --ts-flat-files to bazel build to get bundle * Move to DEFAULT_FLATC_TS_ARGS * Attempt to add esbuild * Attempt to use npm instead * Remove futile attempt to add esbuild * Attempt to as bazel esbuild * Shuffle * Upgrade bazel deps * Revert failed attempts to get bazel working * Ignore flatc tests for now * Add esbuild dependency * `package.json` Include esbuild * `WORKSPACE` Add fetching esbuild binary * Update WORKSPACE * Unfreeze Lockfile * Update WORKSPACE * Update BUILD.bazel * Rework to suggest instead of running external bundler * Add esbuild generation to test script * Prelim bundle test * Run test JavaScriptTest from flatbuffers 1.x * Deps upgrade * Clang format fix * Revert bazel changes * Fix newline * Generate with type declarations * Handle "empty" root namespace * Adjust tests for typescript_keywords.ts * Separate test procedure for old node resolution module output * Fix rel path for root level re-exports * Bazel support for esbuild-based flatc Unfortunately, we lose typing information because the new esbuild method of generating single files does not generate type information. The method used here is a bit hack-ish because it relies on parsing the console output of flatc to figure out what to do. * Try to fix bazel build for when node isn't present on host * Auto formatting fixes * Fix missing generated code Co-authored-by: Derek Bailey <derekbailey@google.com> Co-authored-by: James Kuszmaul <jabukuszmaul+collab@gmail.com>
91 lines
3.3 KiB
Python
91 lines
3.3 KiB
Python
"""
|
|
Rules for building typescript flatbuffers with Bazel.
|
|
"""
|
|
|
|
load("@build_bazel_rules_nodejs//:index.bzl", "js_library")
|
|
load(":build_defs.bzl", "flatbuffer_library_public")
|
|
|
|
DEFAULT_FLATC_TS_ARGS = [
|
|
"--gen-object-api",
|
|
"--gen-mutable",
|
|
"--reflect-names",
|
|
"--gen-name-strings",
|
|
"--ts-flat-files",
|
|
"--keep-prefix",
|
|
]
|
|
|
|
def flatbuffer_ts_library(
|
|
name,
|
|
srcs,
|
|
compatible_with = None,
|
|
target_compatible_with = None,
|
|
deps = [],
|
|
include_paths = None,
|
|
flatc_args = DEFAULT_FLATC_TS_ARGS,
|
|
visibility = None,
|
|
restricted_to = None,
|
|
gen_reflections = False,
|
|
package_name = None):
|
|
"""Generates a ts_library rule for a given flatbuffer definition.
|
|
|
|
Args:
|
|
name: Name of the generated ts_library rule.
|
|
srcs: Source .fbs file(s).
|
|
deps: Other flatbuffer_ts_library's to depend on. Note that currently
|
|
you must specify all your transitive dependencies manually.
|
|
include_paths: Optional, list of paths the includes files can be found in.
|
|
flatc_args: Optional list of additional arguments to pass to flatc
|
|
(e.g. --gen-mutable).
|
|
visibility: The visibility of the generated cc_library. By default, use the
|
|
default visibility of the project.
|
|
compatible_with: Optional, The list of environments this rule can be built
|
|
for, in addition to default-supported environments.
|
|
restricted_to: Optional, The list of environments this rule can be built
|
|
for, instead of default-supported environments.
|
|
target_compatible_with: Optional, The list of target platform constraints
|
|
to use.
|
|
gen_reflections: Optional, if true this will generate the flatbuffer
|
|
reflection binaries for the schemas.
|
|
package_name: Optional, Package name to use for the generated code.
|
|
"""
|
|
srcs_lib = "%s_srcs" % (name)
|
|
out_base = [s.replace(".fbs", "").split("/")[-1].split(":")[-1] for s in srcs]
|
|
|
|
if len(srcs) != 1:
|
|
fail("flatbuffer_ts_library only supports one .fbs file per target currently.")
|
|
|
|
outs = ["%s_generated.cjs" % s for s in out_base]
|
|
includes = [d + "_includes" for d in deps]
|
|
reflection_name = "%s_reflection" % name if gen_reflections else ""
|
|
flatbuffer_library_public(
|
|
name = srcs_lib,
|
|
srcs = srcs,
|
|
outs = outs,
|
|
language_flag = "--ts",
|
|
includes = includes,
|
|
include_paths = include_paths,
|
|
flatc_args = flatc_args + ["--filename-suffix _generated"],
|
|
compatible_with = compatible_with,
|
|
restricted_to = restricted_to,
|
|
reflection_name = reflection_name,
|
|
reflection_visibility = visibility,
|
|
target_compatible_with = target_compatible_with,
|
|
flatc_path = "@com_github_google_flatbuffers//ts:compile_flat_file",
|
|
)
|
|
js_library(
|
|
name = name,
|
|
visibility = visibility,
|
|
compatible_with = compatible_with,
|
|
restricted_to = restricted_to,
|
|
target_compatible_with = target_compatible_with,
|
|
srcs = outs,
|
|
package_name = package_name,
|
|
)
|
|
native.filegroup(
|
|
name = "%s_includes" % (name),
|
|
srcs = srcs + includes,
|
|
compatible_with = compatible_with,
|
|
restricted_to = restricted_to,
|
|
visibility = visibility,
|
|
)
|