Mercurial
view playground/BUILD @ 70:4bc56e88e1f3
Remove unnecessary files.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Thu, 25 Dec 2025 20:10:46 -0800 |
| 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"], )