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