# Copyright 2020 Google LLC. All Rights Reserved. package(default_visibility = [ "//visibility:public", ]) cc_library( name = "data_source", testonly = True, srcs = [ "data_source.cc", ], hdrs = [ "data_source.h", ], ) cc_library( name = "measurements", testonly = True, srcs = [ "measurements.cc", ], hdrs = [ "measurements.h", ], deps = [ "//chromium_deps/base:glog", ], )