comparison seobeo/BUILD @ 127:9af248484ba2

[Updated] MrJuneJune Test.
author June Park <parkjune1995@gmail.com>
date Thu, 08 Jan 2026 18:05:47 -0800
parents e7899c93da77
children 7a63e41a21fb
comparison
equal deleted inserted replaced
126:e7899c93da77 127:9af248484ba2
5 name = "seobeo_hdrs", 5 name = "seobeo_hdrs",
6 srcs = [ 6 srcs = [
7 "seobeo.h", 7 "seobeo.h",
8 "seobeo_internal.h", 8 "seobeo_internal.h",
9 "snapshot_creator.h", 9 "snapshot_creator.h",
10 "s_test_generator.h",
11 ], 10 ],
12 visibility = ["//visibility:public"], 11 visibility = ["//visibility:public"],
13 ) 12 )
14 13
15 # Minimal TCP/SSL handling only (no HTTP, no WebSocket) 14 # Minimal TCP/SSL handling only (no HTTP, no WebSocket)
371 370
372 cc_library( 371 cc_library(
373 name = "seobeo_test_macos", 372 name = "seobeo_test_macos",
374 srcs = [ 373 srcs = [
375 "snapshot_creator.c", 374 "snapshot_creator.c",
376 "s_test_generator.c",
377 ], 375 ],
378 hdrs = [ 376 hdrs = [
379 "snapshot_creator.h", 377 "snapshot_creator.h",
380 "s_test_generator.h",
381 ], 378 ],
382 deps = [ 379 deps = [
383 ":seobeo_tcp_client_macos", 380 ":seobeo_tcp_client_macos",
384 ], 381 ],
385 target_compatible_with = [ 382 target_compatible_with = [
390 387
391 cc_library( 388 cc_library(
392 name = "seobeo_test_linux", 389 name = "seobeo_test_linux",
393 srcs = [ 390 srcs = [
394 "snapshot_creator.c", 391 "snapshot_creator.c",
395 "s_test_generator.c",
396 ], 392 ],
397 hdrs = [ 393 hdrs = [
398 "snapshot_creator.h", 394 "snapshot_creator.h",
399 "s_test_generator.h",
400 ], 395 ],
401 deps = [ 396 deps = [
402 ":seobeo_tcp_client_linux", 397 ":seobeo_tcp_client_linux",
403 ], 398 ],
404 target_compatible_with = [ 399 target_compatible_with = [
405 "@platforms//os:linux", 400 "@platforms//os:linux",
406 ], 401 ],
407 visibility = ["//visibility:public"], 402 visibility = ["//visibility:public"],
408 ) 403 )
409
410 # Test generator tool - generates test files from route definitions
411 cc_binary(
412 name = "test_generator",
413 srcs = ["tools/test_generator_main.c"],
414 deps = [":seobeo_test"],
415 visibility = ["//visibility:public"],
416 )