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 29 30 31
cc_library( name = "core", hdrs = [ "allocator.h", "api_registry.h", "atomic.h", "base.h", "format.h", "gsl.h", "hash.h", "id_name.h", "io.h", "log.h", "os.h", "status.h", "std.h", "temp_allocator.h", ], srcs = [ "allocator.cpp", "api_registry.cpp", "format.cpp", "io.cpp", "log.cpp", "os_win32.cpp", "status.cpp", "temp_allocator.cpp", ], visibility = ["//:__subpackages__"], )