# Copyright 2022 The Chromium Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. source_set("browser") { public = [ "system_signals_service_host_impl.h" ] sources = [ "system_signals_service_host_impl.cc" ] configs += [ "//build/config/compiler:wexit_time_destructors" ] public_deps = [ "//components/device_signals/core/browser", "//components/device_signals/core/common/mojom", "//mojo/public/mojom/base", ] deps = [ "//base", "//chrome:strings", "//components/device_signals/core/common:features", "//content/public/browser", ] } source_set("unit_tests") { testonly = true sources = [ "system_signals_service_host_impl_unittest.cc" ] deps = [ ":browser", "//base", "//base/test:test_support", "//components/device_signals/core/browser", "//components/device_signals/core/browser:test_support", "//components/device_signals/core/common:features", "//components/device_signals/core/common/mojom", "//services/network/public/cpp", "//testing/gmock", "//testing/gtest", ] }