Mercurial
comparison gui_ze/BUILD @ 23:2d0d0b6c8906
[GuiZe] Adding TTFB calculating script.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Tue, 07 Oct 2025 08:55:40 -0700 |
| parents | de54585a40f1 |
| children | 24fe8ff94056 |
comparison
equal
deleted
inserted
replaced
| 22:947b81010aba | 23:2d0d0b6c8906 |
|---|---|
| 1 load(":gui_ze.bzl", "foo_binary") | 1 load(":gui_ze.bzl", "foo_binary") |
| 2 | 2 |
| 3 print("BUILD file") | 3 # Test making tools. |
| 4 foo_binary(name = "bin1") | 4 # ----- |
| 5 foo_binary(name = "bin2") | 5 # print("BUILD file") |
| 6 # foo_binary(name = "bin1") | |
| 7 # foo_binary(name = "bin2") | |
| 6 | 8 |
| 9 # assume it has curl lmao | |
| 10 sh_binary( | |
| 11 name = "ttfb", | |
| 12 srcs = ["time_to_first_byte.sh"], | |
| 13 visibility = ["//visibility:public"], | |
| 14 ) | |
| 15 |