Mercurial
view dowa/BUILD @ 36:84672efec192
[Zenbu] WIP fixing issues regarding to using edge only. I think there is a problem where socket closes before sending back the info.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Sun, 09 Nov 2025 06:25:16 -0800 |
| parents | 947b81010aba |
| children | a30944e5719e |
line wrap: on
line source
load("@rules_cc//cc:cc_library.bzl", "cc_library") load("@rules_cc//cc:cc_test.bzl", "cc_test") cc_library( name = "dowa", srcs = [ "d_string.c", "d_memory.c", ], hdrs = [ "dowa.h", "dowa_internal.h" ], visibility = ["//visibility:public"], ) cc_binary( name = "dowa_test", srcs = ["dowa_test.c"], deps = [":dowa"], args = [], data = glob([ "test_folder/**", ]), copts = ["-fsanitize=address", "-g"], linkopts = ["-fsanitize=address"], )