comparison 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
comparison
equal deleted inserted replaced
119:c39582f937e5 120:cbbf78b17cfa
125 srcs = [ 125 srcs = [
126 "s_network.c", 126 "s_network.c",
127 "s_web.c", 127 "s_web.c",
128 "s_ssl.c", 128 "s_ssl.c",
129 "s_http_client.c", 129 "s_http_client.c",
130 "s_websocket.c",
130 "snapshot_creator.c", 131 "snapshot_creator.c",
131 "os/s_macos_edge.c", 132 "os/s_macos_edge.c",
132 ], 133 ],
133 hdrs = [":seobeo_hdrs"], 134 hdrs = [":seobeo_hdrs"],
134 deps = [ 135 deps = [
146 srcs = [ 147 srcs = [
147 "s_network.c", 148 "s_network.c",
148 "s_web.c", 149 "s_web.c",
149 "s_ssl.c", 150 "s_ssl.c",
150 "s_http_client.c", 151 "s_http_client.c",
152 "s_websocket.c",
151 "snapshot_creator.c", 153 "snapshot_creator.c",
152 "os/s_linux_edge.c", 154 "os/s_linux_edge.c",
153 ], 155 ],
154 hdrs = [":seobeo_hdrs"], 156 hdrs = [":seobeo_hdrs"],
155 deps = [ 157 deps = [
184 srcs = ["tests/seobeo_client_test.c"], 186 srcs = ["tests/seobeo_client_test.c"],
185 deps = [":seobeo_client"], 187 deps = [":seobeo_client"],
186 visibility = ["//visibility:public"], 188 visibility = ["//visibility:public"],
187 ) 189 )
188 190
191 cc_test(
192 name = "seobeo_websocket_test",
193 srcs = ["tests/seobeo_websocket_test.c"],
194 deps = [":seobeo_client"],
195 size = "small",
196 timeout = "short",
197 visibility = ["//visibility:public"],
198 )
199