# Copyright 2026 The Chromium Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. static_library("account_settings") { sources = [ "account_setting_service.h", "account_setting_service_impl.cc", "account_setting_service_impl.h", "account_setting_sync_bridge.cc", "account_setting_sync_bridge.h", "account_setting_sync_util.cc", "account_setting_sync_util.h", "account_settings.h", "account_settings_features.cc", "account_settings_features.h", ] public_deps = [ "//base", "//components/keyed_service/core", "//components/sync/model", ] deps = [ "//components/sync/base", "//components/sync/protocol", ] } static_library("test_support") { testonly = true sources = [ "mock_account_setting_service.cc", "mock_account_setting_service.h", ] public_deps = [ ":account_settings", "//testing/gmock", ] } source_set("unit_tests") { testonly = true sources = [ "account_setting_service_impl_unittest.cc", "account_setting_sync_bridge_unittest.cc", ] deps = [ ":account_settings", "//base", "//base/test:test_support", "//components/sync:test_support", "//testing/gmock", "//testing/gtest", ] }