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

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

Issue 1477733002: Add ArcNotificationManager for new ARC notification (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased and formatted Created 5 years 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 6
7 static_library("arc") { 7 static_library("arc") {
8 sources = [ 8 sources = [
9 "arc_bridge_bootstrap.cc", 9 "arc_bridge_bootstrap.cc",
10 "arc_bridge_bootstrap.h", 10 "arc_bridge_bootstrap.h",
11 "arc_bridge_service.cc", 11 "arc_bridge_service.cc",
12 "arc_bridge_service.h", 12 "arc_bridge_service.h",
13 "arc_bridge_service_impl.cc", 13 "arc_bridge_service_impl.cc",
14 "arc_bridge_service_impl.h", 14 "arc_bridge_service_impl.h",
15 "arc_service_manager.cc", 15 "arc_service_manager.cc",
16 "arc_service_manager.h", 16 "arc_service_manager.h",
17 "input/arc_input_bridge.h", 17 "input/arc_input_bridge.h",
18 "input/arc_input_bridge_impl.cc", 18 "input/arc_input_bridge_impl.cc",
19 "input/arc_input_bridge_impl.h", 19 "input/arc_input_bridge_impl.h",
20 "notification/arc_notification_item.cc",
21 "notification/arc_notification_item.h",
22 "notification/arc_notification_manager.cc",
23 "notification/arc_notification_manager.h",
20 "settings/arc_settings_bridge.cc", 24 "settings/arc_settings_bridge.cc",
21 "settings/arc_settings_bridge.h", 25 "settings/arc_settings_bridge.h",
22 ] 26 ]
23 27
24 deps = [ 28 deps = [
25 "//base", 29 "//base",
26 "//base:prefs", 30 "//base:prefs",
27 "//chromeos", 31 "//chromeos",
32 "//components/signin/core/account_id",
33 "//content/public/browser",
34 "//content/public/child",
28 "//ipc:ipc", 35 "//ipc:ipc",
29 "//ipc/mojo:mojo", 36 "//ipc/mojo:mojo",
30 "//third_party/mojo/src/mojo/edk/system", 37 "//third_party/mojo/src/mojo/edk/system",
31 "//ui/aura", 38 "//ui/aura",
32 "//ui/events", 39 "//ui/events",
33 "//ui/events:dom_keycode_converter", 40 "//ui/events:dom_keycode_converter",
41 "//ui/gfx",
42 "//ui/message_center",
34 ] 43 ]
35 44
36 public_deps = [ 45 public_deps = [
37 ":arc_bindings", 46 ":arc_bindings",
38 ] 47 ]
39 } 48 }
40 49
41 mojom("arc_bindings") { 50 mojom("arc_bindings") {
42 sources = [ 51 sources = [
43 "common/arc_bridge.mojom", 52 "common/arc_bridge.mojom",
(...skipping 30 matching lines...) Expand all
74 "//chromeos", 83 "//chromeos",
75 "//ipc/mojo:mojo", 84 "//ipc/mojo:mojo",
76 "//mojo/public/cpp/environment:environment", 85 "//mojo/public/cpp/environment:environment",
77 "//mojo/public/cpp/system:system", 86 "//mojo/public/cpp/system:system",
78 "//testing/gtest", 87 "//testing/gtest",
79 "//ui/aura", 88 "//ui/aura",
80 "//ui/events", 89 "//ui/events",
81 "//ui/events:dom_keycode_converter", 90 "//ui/events:dom_keycode_converter",
82 ] 91 ]
83 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698