# Copyright 2024 The Chromium Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. assert(is_chromeos) static_library("sanitize") { sources = [ "chrome_sanitize_ui_delegate.cc", "chrome_sanitize_ui_delegate.h", ] public_deps = [ "//chrome/browser:browser_public_dependencies" ] deps = [ "//ash/webui/sanitize_ui", "//ash/webui/sanitize_ui/mojom", "//base", "//chrome/browser/profile_resetter", "//chrome/browser/profiles:profile", "//chrome/browser/ui/webui/ash/settings", "//components/session_manager/core", ] } source_set("unit_tests") { testonly = true sources = [ "chrome_sanitize_ui_delegate_unittest.cc" ] deps = [ "//chrome/browser", "//chrome/browser/ash/sanitize", "//chrome/browser/profile_resetter:fake_profile_resetter", "//chrome/browser/profiles:profile", "//chrome/browser/ui/webui/ash/settings", "//chrome/test:test_support", "//content/public/browser", "//testing/gtest", ] }