# 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)
static_library("types") {
sources = [
"system_web_app_background_task_info.cc",
"system_web_app_background_task_info.h",
"system_web_app_data.cc",
"system_web_app_data.h",
"system_web_app_delegate.cc",
"system_web_app_delegate.h",
"system_web_app_delegate_map.cc",
"system_web_app_delegate_map.h",
]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
deps = [
"//base",
"//chrome/common",
"//ui/base",
"//url",
]
public_deps = [ "//ash/webui/system_apps/public:system_web_app_type" ]
}