Mercurial
comparison seobeo/BUILD @ 18:fa2b8af609d9
[Seobeo] Fixed a bug with pathing. Support SSL.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Mon, 06 Oct 2025 08:21:34 -0700 |
| parents | d97ec3ded2ae |
| children | 2852b2e2363f |
comparison
equal
deleted
inserted
replaced
| 17:d97ec3ded2ae | 18:fa2b8af609d9 |
|---|---|
| 1 load("@rules_cc//cc:cc_binary.bzl", "cc_binary") | 1 load("@rules_cc//cc:cc_binary.bzl", "cc_binary") |
| 2 load("@rules_cc//cc:cc_library.bzl", "cc_library") | 2 load("@rules_cc//cc:cc_library.bzl", "cc_library") |
| 3 | |
| 3 | 4 |
| 4 filegroup( | 5 filegroup( |
| 5 name = "seobeo_hdrs", | 6 name = "seobeo_hdrs", |
| 6 srcs = [ | 7 srcs = [ |
| 7 "seobeo.h", | 8 "seobeo.h", |
| 26 "s_linux_network.c", | 27 "s_linux_network.c", |
| 27 "s_web.c", | 28 "s_web.c", |
| 28 "os/s_macos_edge.c", | 29 "os/s_macos_edge.c", |
| 29 ], | 30 ], |
| 30 hdrs = [":seobeo_hdrs"], | 31 hdrs = [":seobeo_hdrs"], |
| 31 deps = ["//dowa:dowa"], | 32 deps = [ |
| 33 "//dowa:dowa", | |
| 34 "@openssl//:ssl", | |
| 35 ], | |
| 32 target_compatible_with = [ | 36 target_compatible_with = [ |
| 33 "@platforms//os:osx", | 37 "@platforms//os:osx", |
| 34 ], | 38 ], |
| 35 visibility = ["//visibility:public"], | 39 visibility = ["//visibility:public"], |
| 36 ) | 40 ) |
| 41 "s_linux_network.c", | 45 "s_linux_network.c", |
| 42 "s_web.c", | 46 "s_web.c", |
| 43 "os/s_linux_edge.c", | 47 "os/s_linux_edge.c", |
| 44 ], | 48 ], |
| 45 hdrs = [":seobeo_headers"], | 49 hdrs = [":seobeo_headers"], |
| 46 deps = ["//dowa:dowa"], | 50 deps = [ |
| 51 "//dowa:dowa", | |
| 52 "@openssl//:ssl", | |
| 53 ], | |
| 47 target_compatible_with = [ | 54 target_compatible_with = [ |
| 48 "@platforms//os:linux", | 55 "@platforms//os:linux", |
| 49 ], | 56 ], |
| 50 visibility = ["//visibility:public"], | 57 visibility = ["//visibility:public"], |
| 51 ) | 58 ) |