Mercurial
view playground/BUILD @ 41:d2bb317e01db
[Experiment] Calling seobeo in a python server and see.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 01 Dec 2025 20:58:04 -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"], )