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