# 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. source_set("features") { sources = [ "features.cc", "features.h", ] deps = [ "//base" ] } source_set("cross_device") { sources = [ "cross_device_theme_sync_bridge.h", "cross_device_theme_tracker.h", "theme_comparer.h", "theme_translation.cc", "theme_translation.h", ] public_deps = [ ":features", "//components/keyed_service/core", "//components/sync", "//components/sync/protocol", "//components/sync_device_info", "//skia", "//url", ] deps = [ "//base" ] } source_set("unit_tests") { testonly = true sources = [ "cross_device_theme_tracker_unittest.cc" ] deps = [ ":cross_device", "//base", "//base/test:test_support", "//components/sync_device_info:test_support", "//testing/gmock", "//testing/gtest", ] }