summaryrefslogtreecommitdiff
path: root/deimos/core/BUILD
blob: e4bfee8df5e5a851965406b130c3ec4d80169a4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
cc_library(
    name = "core",
    hdrs = [
        "allocator.h",
        "api_registry.h",
        "base.h",
        "gsl.h",
        "hash.h",
        "id_name.h",
        "io.h",
        "log.h",
        "os.h",
        "status.h",
        "std.h",
        "format.h",
    ],
    srcs = [
        "allocator.cpp",
        "api_registry.cpp",
        "format.cpp",
        "io.cpp",
        "log.cpp",
        "os_win32.cpp",
        "status.cpp",
    ],
    visibility = ["//:__subpackages__"],
)