diff dowa/BUILD @ 92:655ea0b661fd

[Seobeo] Added few endpoints for handling files. [Dowa] Added few functions for random number and generating uuids
author June Park <parkjune1995@gmail.com>
date Fri, 02 Jan 2026 17:47:10 -0800
parents d39e8860a361
children f3084bca7317
line wrap: on
line diff
--- a/dowa/BUILD	Thu Jan 01 16:34:51 2026 -0800
+++ b/dowa/BUILD	Fri Jan 02 17:47:10 2026 -0800
@@ -8,12 +8,12 @@
     visibility = ["//visibility:public"],
 )
 
-# TODO: Fix so that we can just define in the header instead of defining in the cc_library because this is ass.
 cc_library(
-  name = "dowa_generic",
+  name = "dowa",
   srcs = [
     "d_string.c",
     "d_memory.c",
+    "d_math.c",
   ],
   hdrs = [
     "dowa.h",
@@ -22,20 +22,6 @@
   visibility = ["//visibility:public"],
 )
 
-cc_library(
-  name = "dowa",
-  srcs = [
-    "d_string.c",
-    "d_memory.c",
-  ],
-  hdrs = [
-    "dowa.h",
-    "dowa_internal.h",
-  ],
-  copts = ["-DDIRECTORY"],
-  visibility = ["//visibility:public"],
-)
-
 cc_test(
   name = "dowa_test",
   srcs = ["dowa_test.c"],
@@ -44,7 +30,6 @@
   data = glob([
       "test_folder/**",
   ]),
-  # TODO: Fix this lmao?
   copts = ["-fsanitize=address", "-g"],
   linkopts = ["-fsanitize=address"],
 )