Mercurial
diff seobeo/BUILD @ 120:cbbf78b17cfa
[Seobeo][Websocket] Created Web socket client logic.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Thu, 08 Jan 2026 03:19:59 -0800 |
| parents | c39582f937e5 |
| children | 7b1719fa918c |
line wrap: on
line diff
--- a/seobeo/BUILD Wed Jan 07 16:05:57 2026 -0800 +++ b/seobeo/BUILD Thu Jan 08 03:19:59 2026 -0800 @@ -127,6 +127,7 @@ "s_web.c", "s_ssl.c", "s_http_client.c", + "s_websocket.c", "snapshot_creator.c", "os/s_macos_edge.c", ], @@ -148,6 +149,7 @@ "s_web.c", "s_ssl.c", "s_http_client.c", + "s_websocket.c", "snapshot_creator.c", "os/s_linux_edge.c", ], @@ -186,3 +188,12 @@ visibility = ["//visibility:public"], ) +cc_test( + name = "seobeo_websocket_test", + srcs = ["tests/seobeo_websocket_test.c"], + deps = [":seobeo_client"], + size = "small", + timeout = "short", + visibility = ["//visibility:public"], +) +