blob: 7b575beb649143e065e1ae9e984ac6477cdab86e [file] [log] [blame]
# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/chromeos/ui_mode.gni")
assert(is_chromeos_ash)
source_set("system_web_apps") {
sources = [
"system_web_app_delegate_ui_impl.cc",
"system_web_app_icon_checker_impl.cc",
"system_web_app_icon_checker_impl.h",
"system_web_app_ui_utils.cc",
"system_web_app_ui_utils.h",
]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
deps = [
"//base",
"//chrome/browser/ash/system_web_apps",
"//chrome/browser/ash/system_web_apps/types",
"//chrome/browser/profiles:profile",
"//chrome/browser/web_applications",
"//chrome/common",
"//components/services/app_service/public/mojom",
"//content/public/browser",
"//ui/base",
"//ui/display",
]
}