1 2cc_binary { 3 name: "cow_benchmark", 4 host_supported: true, 5 defaults: [ 6 "fs_mgr_defaults", 7 "libsnapshot_cow_defaults", 8 ], 9 10 srcs: ["cow_benchmark.cpp"], 11 12 static_libs: [ 13 "libsnapshot_cow", 14 ], 15 16 shared_libs: [ 17 "libbase", 18 "liblog", 19 ], 20 21 cflags: ["-Werror"], 22} 23 24 25cc_binary { 26 name: "write_cow", 27 host_supported: true, 28 defaults: [ 29 "fs_mgr_defaults", 30 "libsnapshot_cow_defaults", 31 ], 32 33 srcs: ["write_cow.cpp"], 34 35 static_libs: [ 36 "libsnapshot_cow", 37 "libgflags", 38 ], 39 40 shared_libs: [ 41 "libbase", 42 "liblog", 43 ], 44 45 cflags: ["-Werror"], 46} 47