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 = [ |