| cc_binary { | |
| name: "memcpy-perf", | |
| cflags: [ | |
| "-g", | |
| "-Wall", | |
| "-Werror", | |
| "-Wno-missing-field-initializers", | |
| "-Wno-sign-compare", | |
| "-O3", | |
| ], | |
| srcs: [ | |
| "memcpy-perf.cpp", | |
| "test-funcs.cpp", | |
| ], | |
| static_executable: true, | |
| stl: "libc++_static", | |
| static_libs: ["libc"], | |
| } |