| load("@rules_cc//cc:defs.bzl", "cc_library") | |
| cc_library( | |
| name = "libcppbor", | |
| srcs = ["src/cppbor.cpp", "src/cppbor_parse.cpp"], | |
| deps = ["@boringssl//:crypto"], | |
| hdrs = [ | |
| "include/cppbor/cppbor.h", | |
| "include/cppbor/cppbor_parse.h", | |
| "include/cppbor/span.h", | |
| ], | |
| includes = ["include", "include/cppbor"], | |
| copts = [ | |
| "-D__TRUSTY__", | |
| "-include limits", | |
| ], | |
| visibility = ["//visibility:public"], | |
| ) |