summaryrefslogtreecommitdiff
path: root/deimos/core/BUILD
blob: 2093642fc59b5559fdb878f878b19dc369b84222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
cc_library(
    name = "core",
    hdrs = [
        "base.h",
        "allocator.h",
        "api_registry.h",
    ],
    srcs = [
        "allocator.cpp",
        "api_registry.cpp",
    ],
    visibility = ["//:__subpackages__"],
)