Mercurial
view markdown_converter/BUILD @ 180:3a4ebe4552bf
Remove playground file as it is not needed to be tracked.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Mon, 19 Jan 2026 08:05:02 -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"], )