| # 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. |
| |
| source_set("webui_browser") { |
| sources = [ |
| "webui_browser.h", |
| "webui_browser_ui.h", |
| "webui_browser_window.h", |
| "webui_location_bar.h", |
| ] |
| public_deps = [ |
| "//base", |
| "//chrome/browser/ui/location_bar", |
| "//content/public/browser", |
| "//ui/color", |
| "//ui/color:color_provider_key", |
| "//ui/webui", |
| ] |
| } |
| |
| source_set("impl") { |
| sources = [ |
| "webui_browser.cc", |
| "webui_browser_ui.cc", |
| "webui_browser_window.cc", |
| "webui_location_bar.cc", |
| ] |
| |
| deps = [ |
| ":webui_browser", |
| "//base", |
| "//chrome/browser/profiles", |
| "//chrome/browser/resources/webui_browser:resources", |
| "//chrome/browser/themes", |
| "//chrome/browser/ui/location_bar", |
| "//chrome/browser/ui/web_applications", |
| "//chrome/common:chrome_features", |
| "//components/input", |
| "//components/sharing_message", |
| "//content/public/browser", |
| "//ui/base", |
| "//ui/views", |
| "//ui/views/controls/webview", |
| ] |
| } |