Antonio Gomes | ecfe1e2 | 2024-08-14 23:48:44 | [diff] [blame] | 1 | # Copyright 2024 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 | |
Antonio Gomes | ecfe1e2 | 2024-08-14 23:48:44 | [diff] [blame] | 5 | assert(is_win || is_mac || is_linux || is_chromeos) |
| 6 | |
| 7 | source_set("apps") { |
| 8 | sources = [ |
Antonio Gomes | ecfe1e2 | 2024-08-14 23:48:44 | [diff] [blame] | 9 | "chrome_app_delegate.h", |
| 10 | "chrome_app_window_client.h", |
| 11 | "directory_access_confirmation_dialog.h", |
| 12 | ] |
| 13 | |
| 14 | public_deps = [ |
| 15 | "//base", |
| 16 | "//extensions/browser", |
| 17 | "//ui/base:types", |
| 18 | "//ui/gfx/geometry", |
| 19 | ] |
| 20 | } |
| 21 | |
| 22 | source_set("impl") { |
| 23 | sources = [ |
| 24 | "chrome_app_delegate.cc", |
| 25 | "chrome_app_window_client.cc", |
| 26 | "directory_access_confirmation_dialog.cc", |
| 27 | ] |
| 28 | |
| 29 | deps = [ |
| 30 | ":apps", |
Antonio Gomes | ecfe1e2 | 2024-08-14 23:48:44 | [diff] [blame] | 31 | "//chrome/app:generated_resources", |
| 32 | "//chrome/app:generated_resources_grit", |
| 33 | "//chrome/browser:primitives", |
Steven Luong | 5de5a42 | 2025-01-30 17:33:29 | [diff] [blame] | 34 | "//chrome/browser:shell_integration", |
Antonio Gomes | ecfe1e2 | 2024-08-14 23:48:44 | [diff] [blame] | 35 | "//chrome/browser/apps/platform_apps", |
| 36 | "//chrome/browser/devtools", |
| 37 | "//chrome/browser/favicon", |
Antonio Gomes | 525af0a | 2024-09-13 23:43:17 | [diff] [blame] | 38 | "//chrome/browser/file_system_access", |
David Bertoni | 364b6727 | 2025-04-24 03:54:30 | [diff] [blame] | 39 | "//chrome/browser/lifetime:termination_notification", |
Antonio Gomes | ecfe1e2 | 2024-08-14 23:48:44 | [diff] [blame] | 40 | "//chrome/browser/media/webrtc", |
Maksim Sisov | 5d2d6db | 2024-09-06 08:46:48 | [diff] [blame] | 41 | "//chrome/browser/picture_in_picture", |
Antonio Gomes | ecfe1e2 | 2024-08-14 23:48:44 | [diff] [blame] | 42 | "//chrome/browser/profiles:profile", |
Antonio Gomes | 3d98dcd | 2024-08-29 13:03:02 | [diff] [blame] | 43 | "//chrome/browser/ui:browser_navigator_params_headers", |
Antonio Gomes | ecfe1e2 | 2024-08-14 23:48:44 | [diff] [blame] | 44 | "//components/keep_alive_registry", |
| 45 | "//components/version_info", |
| 46 | "//components/zoom", |
| 47 | "//content/public/browser", |
| 48 | "//extensions/common", |
| 49 | "//extensions/common:common_constants", |
| 50 | "//extensions/common:mojom", |
| 51 | "//mojo/public/cpp/bindings", |
| 52 | "//printing/buildflags", |
| 53 | "//services/service_manager/public/cpp", |
| 54 | "//ui/base", |
| 55 | ] |
| 56 | |
Antonio Gomes | ecfe1e2 | 2024-08-14 23:48:44 | [diff] [blame] | 57 | if (is_chromeos) { |
Georg Neis | 067f27d | 2024-09-13 04:25:06 | [diff] [blame] | 58 | deps += [ "//chrome/browser/chromeos/policy/dlp" ] |
Antonio Gomes | ecfe1e2 | 2024-08-14 23:48:44 | [diff] [blame] | 59 | } |
| 60 | } |