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

Unified Diff: components/arc/BUILD.gn

Issue 1413153007: arc-app-launcher: Minimal support for ARC app launcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit comment addressed Created 5 years, 1 month 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/arc/BUILD.gn
diff --git a/components/arc/BUILD.gn b/components/arc/BUILD.gn
index e6d6cae938cabf6184600255ae01f581ec0af6d2..14128fbf88df3973e71ffe5229ee073d7a98e3d7 100644
--- a/components/arc/BUILD.gn
+++ b/components/arc/BUILD.gn
@@ -6,6 +6,8 @@ static_library("arc") {
sources = [
"arc_bridge_service.cc",
"arc_bridge_service.h",
+ "arc_bridge_service_impl.cc",
+ "arc_bridge_service_impl.h",
"common/arc_message_generator.cc",
]
@@ -16,6 +18,21 @@ static_library("arc") {
]
}
+static_library("fake_arc_bridge_service") {
xiyuan 2015/11/19 03:13:49 nit: I'd call this "test_support", just in case we
khmel1 2015/11/19 17:11:41 Done.
+ testonly = true
+ sources = [
+ "test/fake_arc_bridge_service.cc",
+ "test/fake_arc_bridge_service.h",
+ ]
+
+ deps = [
+ ":arc",
+ "//chrome/browser/ui",
+ "//ui/app_list",
+ "//ui/gfx",
+ ]
+}
+
source_set("unit_tests") {
testonly = true
sources = [

Powered by Google App Engine
This is Rietveld 408576698