1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27

ash / webui / focus_mode / BUILD.gn [blame]

# Copyright 2024 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, "Focus Mode is ash-chrome only")

static_library("focus_mode") {
  sources = [
    "focus_mode_ui.cc",
    "focus_mode_ui.h",
    "focus_mode_untrusted_ui.cc",
    "focus_mode_untrusted_ui.h",
  ]

  deps = [
    "//ash",
    "//ash/constants",
    "//ash/webui/common:trusted_types_util",
    "//ash/webui/focus_mode/mojom",
    "//ash/webui/focus_mode/resources",
    "//ash/webui/focus_mode/untrusted_resources:resources",
    "//content/public/browser",
    "//ui/webui",
  ]
}