summaryrefslogtreecommitdiff
path: root/deimos/core/BUILD
blob: 08f1ada7131f2e0f0d89edfdf8f6f688095a9fb1 (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
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",
        "std.h",
        "format.h",
    ],
    srcs = [
        "allocator.cpp",
        "api_registry.cpp",
        "format.cpp",
        "io.cpp",
        "log.cpp",
        "os_win32.cpp",
    ],
    visibility = ["//:__subpackages__"],
)