blob: 26c9dd6dfbdade8cf89a8f4d4b5b978ef1e902ff [file] [log] [blame]
# Copyright 2019 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/buildflag_header.gni")
import("//build/config/features.gni")
import("//build/config/jumbo.gni")
jumbo_static_library("sync_device_info") {
sources = [
"device_count_metrics_provider.cc",
"device_count_metrics_provider.h",
"device_info.cc",
"device_info.h",
"device_info_sync_bridge.cc",
"device_info_sync_bridge.h",
"device_info_sync_service.cc",
"device_info_sync_service.h",
"device_info_sync_service_impl.cc",
"device_info_sync_service_impl.h",
"device_info_tracker.h",
"device_info_util.cc",
"device_info_util.h",
"local_device_info_provider.h",
"local_device_info_provider_impl.cc",
"local_device_info_provider_impl.h",
"local_device_info_util.cc",
"local_device_info_util.h",
]
configs += [ "//build/config:precompiled_headers" ]
public_deps = [
"//base",
"//components/sync",
"//components/sync/protocol",
]
deps = [
"//components/keyed_service/core",
"//components/metrics",
"//components/version_info",
"//ui/base",
]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
}
source_set("unit_tests") {
testonly = true
sources = [
"device_count_metrics_provider_unittest.cc",
"device_info_sync_bridge_unittest.cc",
"device_info_util_unittest.cc",
"local_device_info_provider_impl_unittest.cc",
]
configs += [ "//build/config:precompiled_headers" ]
deps = [
":sync_device_info",
"//base",
"//base/test:test_support",
"//components/sync:test_support",
"//components/version_info:version_string",
"//testing/gmock",
"//testing/gtest",
]
}