# Copyright 2021 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
assert(is_chromeos, "Non-Chrome-OS builds must not depend on //chromeos")
source_set("wm") {
defines = [ "IS_CHROMEOS_UI_WM_IMPL" ]
sources = [
"constants.h",
"debug_util.cc",
"debug_util.h",
"desks/ash/desks_helper.cc",
"desks/chromeos_desks_histogram_enums.h",
"desks/desks_helper.h",
"fullscreen/keep_fullscreen_for_url_checker.cc",
"fullscreen/keep_fullscreen_for_url_checker.h",
"fullscreen/pref_names.cc",
"fullscreen/pref_names.h",
"window_util.cc",
"window_util.h",
]
deps = [
"//ash/constants",
"//base",
"//chromeos/ui/base",
"//components/prefs",
"//components/url_matcher",
"//ui/accessibility",
"//ui/aura",
"//ui/base",
"//ui/views",
"//ui/wm/public",
"//url",
]
}