comparison markdown_converter/BUILD @ 158:1c0878eb17de

[MrJuneJune] Readme file gets compiled in server side.
author June Park <parkjune1995@gmail.com>
date Wed, 14 Jan 2026 07:59:19 -0800
parents cd35e600ae34
children fed99fc04e12 8c74204fd362
comparison
equal deleted inserted replaced
157:2db6253f355d 158:1c0878eb17de
8 "**/*.js", 8 "**/*.js",
9 ], allow_empty=True), 9 ], allow_empty=True),
10 visibility = ["//visibility:public"], 10 visibility = ["//visibility:public"],
11 ) 11 )
12 12
13 filegroup(
14 name = "markdown_to_html_hdrs",
15 srcs = glob([
16 "*.h",
17 ], allow_empty=True),
18 visibility = ["//visibility:public"],
19 )
20
13 # C implementation for native use 21 # C implementation for native use
14 cc_library( 22 cc_library(
15 name = "markdown_to_html_c", 23 name = "markdown_to_html_c",
16 srcs = ["markdown_to_html.c"], 24 srcs = ["markdown_to_html.c"],
25 hdrs = [":markdown_to_html_hdrs"],
17 visibility = ["//visibility:public"], 26 visibility = ["//visibility:public"],
18 ) 27 )