1#TODO(michaelrj): split out the implementations from memory_utils 2add_header_library( 3 memory_utils 4 HDRS 5 utils.h 6 elements.h 7 bcmp_implementations.h 8 memcmp_implementations.h 9 memcpy_implementations.h 10 memset_implementations.h 11 DEPS 12 libc.src.__support.CPP.bit 13) 14 15add_header_library( 16 memcpy_implementation 17 HDRS 18 memcpy_implementations.h 19 DEPS 20 .memory_utils 21) 22 23add_header_library( 24 memcmp_implementation 25 HDRS 26 memcmp_implementations.h 27 DEPS 28 .memory_utils 29) 30 31add_header_library( 32 memset_implementation 33 HDRS 34 memset_implementations.h 35 DEPS 36 .memory_utils 37) 38