# Copyright 2023 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-ChromeOS builds cannot depend on //chromeos/ash")

component("demo_mode") {
  sources = [
    "utils/demo_session_utils.cc",
    "utils/demo_session_utils.h",
    "utils/dimensions_utils.cc",
    "utils/dimensions_utils.h",
  ]

  deps = [
    "//ash/constants",
    "//base",
    "//chromeos/ash/components/install_attributes",
    "//chromeos/dbus/power",
    "//components/prefs",
    "//third_party/abseil-cpp:absl",
    "//third_party/icu",
  ]

  defines = [ "IS_CHROMEOS_ASH_COMPONENTS_DEMO_MODE_IMPL" ]
}
