diff mrjunejune/BUILD @ 71:75de5903355c

Giagantic changes that update Dowa library to be more align with stb style array and hashmap. Updated Seobeo to be caching on server side instead of file level caching. Deleted bunch of things I don't really use.
author June Park <parkjune1995@gmail.com>
date Sun, 28 Dec 2025 20:34:22 -0800
parents 6626ec933933
children 49b611c808e7
line wrap: on
line diff
--- a/mrjunejune/BUILD	Thu Dec 25 20:10:46 2025 -0800
+++ b/mrjunejune/BUILD	Sun Dec 28 20:34:22 2025 -0800
@@ -1,6 +1,6 @@
 load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
 load("@rules_cc//cc:cc_library.bzl", "cc_library")
-load("@rules_python//python:py_binary.bzl", "py_binary")
+# load("@rules_python//python:py_binary.bzl", "py_binary")
 load("//gui_ze:gui_ze.bzl", "move_files_into_dir", "bundle")
 
 move_files_into_dir(
@@ -20,7 +20,7 @@
 cc_binary(
   name = "mrjunejune_server",
   srcs = ["main.c"],
-  deps = ["//seobeo:seobeo_server"],  # Use server-only target (no OpenSSL)
+  deps = ["//seobeo:seobeo_server"], 
   data = [":pages_files"],
 )
 
@@ -37,15 +37,15 @@
   visibility = ["//visibility:public"],
 )
 
-py_binary(
-  name = "python_server",
-  srcs = ["python_server.py"],
-  deps = [
-    ":mrjunejune_server_lib",
-    "@pip_deps//:cffi",
-  ],
-  data = [":mrjunejune_server_lib"],
-)
+# py_binary(
+#   name = "python_server",
+#   srcs = ["python_server.py"],
+#   deps = [
+#     ":mrjunejune_server_lib",
+#     "@pip_deps//:cffi",
+#   ],
+#   data = [":mrjunejune_server_lib"],
+# )
 
 cc_test(
   name = "integration_test",