blob: 8ef85d23c153ff3d84de8fc1b188ae65f528cfb2 [file] [log] [blame]
# Copyright 2025 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_win || is_mac || is_linux || is_chromeos || is_android)
source_set("accessibility") {
sources = [ "accessibility_ui.h" ]
public_deps = [
"//base",
"//content/public/browser",
"//ui/accessibility/platform",
]
}
source_set("impl") {
sources = [ "accessibility_ui.cc" ]
public_deps = [ "//chrome/browser:browser_public_dependencies" ]
deps = [
":accessibility",
"//chrome/browser/profiles:profile",
"//chrome/browser/resources/accessibility:resources",
"//chrome/common",
"//chrome/common:constants",
"//components/pref_registry",
]
if (!is_android) {
deps += [
"//chrome/browser/ui:browser_list",
"//chrome/browser/ui/browser_window",
"//ui/views",
]
}
}