1load("//fcp:config.bzl", "FCP_COPTS") 2 3package( 4 default_visibility = ["//fcp:internal"], 5) 6 7cc_library( 8 name = "mock_callback", 9 testonly = 1, 10 hdrs = [ 11 "test_callback.h", 12 ], 13 copts = FCP_COPTS, 14 deps = [ 15 "//fcp/aggregation/protocol:aggregation_protocol", 16 "//fcp/aggregation/protocol:cc_proto", 17 "@com_google_googletest//:gtest_main", 18 ], 19) 20