Mercurial
view playground/BUILD @ 29:ddfa53157710
[Bun] Forgot to add the removed files and remove . from third_party
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Thu, 09 Oct 2025 06:52:30 -0700 |
| parents | b212647e8654 |
| children | 75de5903355c |
line wrap: on
line source
load("@rules_cc//cc:cc_binary.bzl", "cc_binary") load("//gui_ze:gui_ze.bzl", "bun_build") alias( name = "playground", actual = select({ "@platforms//os:osx": ":playground_osx", }) ) cc_binary( name = "playground_osx", srcs = ["main.c"], deps = [ "@openssl//:ssl", ] ) filegroup( name = "all_ts_files", srcs = glob([ "**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", ], allow_empty=True) ) bun_build( name = "hello", src = "main.ts", src_folder = "playground", data = [ "//third_party/bun:bun_files", ":all_ts_files", ], visibility = ["//visibility:public"], )