Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: ui/arc/BUILD.gn

Issue 2066853002: arc: Show custom notification via notification surface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@notification-exo
Patch Set: rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/arc/common/notifications.mojom ('k') | ui/arc/arc.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 static_library("arc") { 8 static_library("arc") {
9 sources = [ 9 sources = [
10 "notification/arc_custom_notification_item.cc",
11 "notification/arc_custom_notification_item.h",
12 "notification/arc_custom_notification_view.cc",
13 "notification/arc_custom_notification_view.h",
10 "notification/arc_notification_item.cc", 14 "notification/arc_notification_item.cc",
11 "notification/arc_notification_item.h", 15 "notification/arc_notification_item.h",
12 "notification/arc_notification_manager.cc", 16 "notification/arc_notification_manager.cc",
13 "notification/arc_notification_manager.h", 17 "notification/arc_notification_manager.h",
18 "notification/arc_notification_surface_manager.cc",
19 "notification/arc_notification_surface_manager.h",
14 ] 20 ]
15 21
16 deps = [ 22 deps = [
17 "//base", 23 "//base",
18 "//components/arc:arc_bindings", 24 "//components/arc:arc_bindings",
19 "//components/signin/core/account_id", 25 "//components/signin/core/account_id",
20 "//skia", 26 "//skia",
21 "//ui/gfx", 27 "//ui/gfx",
22 "//ui/message_center", 28 "//ui/message_center",
23 ] 29 ]
24 } 30 }
25 31
26 test("ui_arc_unittests") { 32 test("ui_arc_unittests") {
27 testonly = true 33 testonly = true
28 sources = [ 34 sources = [
29 "notification/arc_notification_manager_unittest.cc", 35 "notification/arc_notification_manager_unittest.cc",
30 "test/run_all_unittests.cc", 36 "test/run_all_unittests.cc",
31 ] 37 ]
32 38
33 deps = [ 39 deps = [
34 ":arc", 40 ":arc",
35 "//base", 41 "//base",
36 "//base/test:test_support", 42 "//base/test:test_support",
37 "//components/arc:arc_test_support", 43 "//components/arc:arc_test_support",
38 "//mojo/edk/system", 44 "//mojo/edk/system",
39 "//ui/message_center:test_support", 45 "//ui/message_center:test_support",
40 ] 46 ]
41 } 47 }
OLDNEW
« no previous file with comments | « components/arc/common/notifications.mojom ('k') | ui/arc/arc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698