BUILD.bazel revision 3a0488b5
14136e585SShuo Chencc_binary( 24136e585SShuo Chen name = "word_freq_shards_basic", 34136e585SShuo Chen srcs = ["word_freq_shards_basic.cc"], 43a0488b5SShuo Chen # linkopts = ["-ltcmalloc_and_profiler"], 54136e585SShuo Chen deps = [ 685147189SShuo Chen ":common", 74136e585SShuo Chen "@absl//absl/container:flat_hash_map", 84136e585SShuo Chen ], 94136e585SShuo Chen) 1085147189SShuo Chen 1185147189SShuo Chencc_library( 1285147189SShuo Chen name = "common", 1385147189SShuo Chen hdrs = [ 1485147189SShuo Chen "file.h", 1585147189SShuo Chen "timer.h", 1685147189SShuo Chen ], 17c377920eSShuo Chen deps = [ 18c377920eSShuo Chen "@absl//absl/strings:str_format", 19c377920eSShuo Chen "@muduo//muduo/base", 20c377920eSShuo Chen ], 21c377920eSShuo Chen) 22c377920eSShuo Chen 23c377920eSShuo Chencc_test( 24c377920eSShuo Chen name = "benchmark", 25c377920eSShuo Chen srcs = ["benchmark.cc"], 26c377920eSShuo Chen deps = [ 27c377920eSShuo Chen ":common", 28c377920eSShuo Chen "@absl//absl/container:flat_hash_set", 29c377920eSShuo Chen ], 3085147189SShuo Chen) 31