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

Unified Diff: ui/arc/BUILD.gn

Issue 1477733002: Add ArcNotificationManager for new ARC notification (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved to ui/arc and Addressed comments Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: ui/arc/BUILD.gn
diff --git a/ui/arc/BUILD.gn b/ui/arc/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..311724fa6e378b44bc3a1945c0c6fc0e17cd81f7
--- /dev/null
+++ b/ui/arc/BUILD.gn
@@ -0,0 +1,23 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/ui.gni")
+
+static_library("arc") {
+ sources = [
+ "notification/arc_notification_item.cc",
+ "notification/arc_notification_item.h",
+ "notification/arc_notification_manager.cc",
+ "notification/arc_notification_manager.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/arc:arc_bindings",
+ "//components/signin/core/account_id",
+ "//third_party/WebKit/public:blink_headers",
+ "//ui/gfx",
+ "//ui/message_center",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698