Mercurial
comparison markdown_converter/BUILD @ 173:827c6ac504cd hg-web
Merged in default here.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 19 Jan 2026 18:59:10 -0800 |
| parents | 1c0878eb17de |
| children | fed99fc04e12 8c74204fd362 |
comparison
equal
deleted
inserted
replaced
| 151:c033667da5f9 | 173:827c6ac504cd |
|---|---|
| 1 load("@rules_cc//cc:cc_library.bzl", "cc_library") | |
| 2 load("//gui_ze:gui_ze.bzl", "wasm_binary", "bun_run", "move_files_into_dir") | |
| 3 | |
| 4 # JS only | |
| 1 filegroup( | 5 filegroup( |
| 2 name = "markdown_to_html", | 6 name = "markdown_to_html", |
| 3 srcs = glob([ | 7 srcs = glob([ |
| 4 "**/*.js", | 8 "**/*.js", |
| 5 ], allow_empty=True), | 9 ], allow_empty=True), |
| 6 visibility = ["//visibility:public"], | 10 visibility = ["//visibility:public"], |
| 7 ) | 11 ) |
| 8 | 12 |
| 13 filegroup( | |
| 14 name = "markdown_to_html_hdrs", | |
| 15 srcs = glob([ | |
| 16 "*.h", | |
| 17 ], allow_empty=True), | |
| 18 visibility = ["//visibility:public"], | |
| 19 ) | |
| 9 | 20 |
| 21 # C implementation for native use | |
| 22 cc_library( | |
| 23 name = "markdown_to_html_c", | |
| 24 srcs = ["markdown_to_html.c"], | |
| 25 hdrs = [":markdown_to_html_hdrs"], | |
| 26 visibility = ["//visibility:public"], | |
| 27 ) |