Mercurial
view markdown_converter/BUILD @ 156:cd35e600ae34
[MarkDown Converter] Fixed few things and made a test
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Mon, 12 Jan 2026 15:20:39 -0800 |
| parents | bdcc610eeed8 |
| children | 1c0878eb17de |
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"], ) # C implementation for native use cc_library( name = "markdown_to_html_c", srcs = ["markdown_to_html.c"], visibility = ["//visibility:public"], )