Index: services/ui/demo/BUILD.gn |
diff --git a/services/ui/demo/BUILD.gn b/services/ui/demo/BUILD.gn |
index 8eec9ba071983b6761667081a9a1d95fe236be08..70e97eca28bdd7d7fdc36733f752f17870290e99 100644 |
--- a/services/ui/demo/BUILD.gn |
+++ b/services/ui/demo/BUILD.gn |
@@ -8,9 +8,30 @@ import("//testing/test.gni") |
service("mus_demo") { |
sources = [ |
+ "main.cc", |
+ "mus_demo_service.cc", |
+ "mus_demo_service.h", |
+ ] |
+ |
+ deps = [ |
+ ":mus_demo_lib", |
+ "//mojo/public/cpp/bindings", |
+ "//services/service_manager/public/cpp", |
+ "//services/service_manager/public/cpp:sources", |
+ "//services/ui/public/cpp", |
+ "//services/ui/public/cpp:internal", |
+ "//services/ui/public/interfaces", |
tonikitoo
2016/10/19 19:34:07
do we need to duplicate most of the dependencies i
Jay Civelli
2016/10/19 20:00:13
Good point, simplified.
|
+ ] |
+ |
+ data_deps = [ |
+ ":manifest", |
+ ] |
+} |
+ |
+static_library("mus_demo_lib") { |
+ sources = [ |
"bitmap_uploader.cc", |
"bitmap_uploader.h", |
- "main.cc", |
"mus_demo.cc", |
"mus_demo.h", |
] |