Maksim Sisov | bb3d090 | 2025-05-21 13:06:33 | [diff] [blame] | 1 | # Copyright 2025 The Chromium Authors |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | assert(is_win || is_mac || is_linux) |
| 6 | |
| 7 | source_set("app_settings") { |
| 8 | sources = [ |
| 9 | "web_app_settings_navigation_throttle.h", |
| 10 | "web_app_settings_ui.h", |
| 11 | ] |
| 12 | |
| 13 | public_deps = [ |
| 14 | "//base", |
| 15 | "//chrome/browser/ui/webui/app_management", |
| 16 | "//chrome/browser/web_applications", |
| 17 | "//chrome/common", |
| 18 | "//components/webapps/common", |
| 19 | "//content/public/browser", |
| 20 | "//content/public/common", |
| 21 | "//ui/webui", |
| 22 | "//ui/webui/resources/cr_components/app_management:mojo_bindings", |
| 23 | ] |
| 24 | } |
| 25 | |
| 26 | source_set("impl") { |
| 27 | sources = [ |
| 28 | "web_app_settings_navigation_throttle.cc", |
| 29 | "web_app_settings_ui.cc", |
| 30 | ] |
| 31 | |
| 32 | public_deps = [ "//chrome/browser:browser_public_dependencies" ] |
| 33 | |
| 34 | deps = [ |
| 35 | ":app_settings", |
| 36 | "//chrome/app:generated_resources", |
| 37 | "//chrome/browser/profiles:profile", |
| 38 | "//chrome/browser/resources/app_settings:resources", |
| 39 | "//chrome/browser/resources/app_settings:resources_grit", |
| 40 | "//chrome/browser/web_applications", |
| 41 | "//chrome/browser/web_applications/proto", |
| 42 | "//chrome/common", |
| 43 | "//chrome/common:chrome_features", |
| 44 | "//components/strings:components_strings", |
| 45 | "//content/public/browser", |
| 46 | "//ui/gfx", |
| 47 | "//ui/webui", |
| 48 | ] |
| 49 | } |