Mercurial
view markdown_converter/BUILD @ 179:8d17f6e6e290
[ThirdParty] Added emsdk bazel rules that can be supported by bazel 9.0.0
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Thu, 22 Jan 2026 21:23:17 -0800 |
| parents | 1c0878eb17de |
| children | fed99fc04e12 8c74204fd362 |
line wrap: on
line source
load("@rules_cc//cc:cc_library.bzl", "cc_library") load("//gui_ze:gui_ze.bzl", "wasm_binary", "bun_run", "move_files_into_dir") # JS only filegroup( name = "markdown_to_html", srcs = glob([ "**/*.js", ], allow_empty=True), visibility = ["//visibility:public"], ) filegroup( name = "markdown_to_html_hdrs", srcs = glob([ "*.h", ], allow_empty=True), visibility = ["//visibility:public"], ) # C implementation for native use cc_library( name = "markdown_to_html_c", srcs = ["markdown_to_html.c"], hdrs = [":markdown_to_html_hdrs"], visibility = ["//visibility:public"], )