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

Unified Diff: components/bubble/BUILD.gn

Issue 1251633002: Add BubbleManager to manage bubbles and ChromeBubbleManager for events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix trybots pt2 Created 5 years, 4 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: components/bubble/BUILD.gn
diff --git a/components/bubble/BUILD.gn b/components/bubble/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..167f255e049690b2f316a6ab274f41be14ea2929
--- /dev/null
+++ b/components/bubble/BUILD.gn
@@ -0,0 +1,35 @@
+# Copyright 2015 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.
+
+static_library("bubble") {
+ sources = [
+ "bubble_close_reason.h",
+ "bubble_controller.cc",
+ "bubble_controller.h",
+ "bubble_delegate.cc",
+ "bubble_delegate.h",
+ "bubble_manager.cc",
+ "bubble_manager.h",
+ "bubble_ui.h",
+ ]
+
+ deps = [
+ "//ui/gfx",
+ "//content/public/browser",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+
+ sources = [
+ "bubble_manager_unittest.cc",
+ ]
+
+ deps = [
+ ":bubble",
+ "//testing/gmock",
+ "//testing/gtest",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698