blob: 6db318a13e18c7d0133904742d48c2c25046b2a5 [file] [log] [blame]
stluong8fc2b9f2024-08-23 23:01:131# Copyright 2024 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/config/ui.gni")
6
7source_set("toasts") {
8 sources = [
Steven Luongce5488f32024-09-30 18:11:239 "toast_id.cc",
stluong8fc2b9f2024-08-23 23:01:1310 "toast_id.h",
11 "toast_registry.cc",
12 "toast_registry.h",
13 "toast_specification.cc",
14 "toast_specification.h",
15 ]
16 public_deps = [
17 "//base",
18 "//ui/base",
Joseph Parkf1147f742024-10-18 17:39:1719 "//ui/menus",
stluong8fc2b9f2024-08-23 23:01:1320 ]
21 deps = [ "//components/vector_icons:vector_icons" ]
22}
23
24source_set("unit_tests") {
25 testonly = true
Jan Keitelb052bc932024-11-06 15:34:5426 sources = [ "toast_registry_unittest.cc" ]
stluong8fc2b9f2024-08-23 23:01:1327 deps = [
28 ":toasts",
29 "//base",
30 "//base/test:test_support",
31 "//chrome/test:test_support",
32 "//testing/gtest",
33 "//ui/gfx",
Joseph Parkf1147f742024-10-18 17:39:1734 "//ui/menus",
stluong8fc2b9f2024-08-23 23:01:1335 ]
36}