Mercurial
view playground/BUILD @ 53:82d1fe4d4ee6
[PostDog] Postman but for dogs.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Fri, 19 Dec 2025 13:58:37 -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"], )