OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//services/catalog/public/tools/catalog.gni") | 5 import("//services/catalog/public/tools/catalog.gni") |
6 import("//services/service_manager/public/cpp/service.gni") | 6 import("//services/service_manager/public/cpp/service.gni") |
7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
8 import("//services/service_manager/public/tools/test/service_test.gni") | 8 import("//services/service_manager/public/tools/test/service_test.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 | 10 |
11 source_set("lib") { | 11 source_set("lib") { |
12 sources = [ | 12 sources = [ |
13 "mus_demo.cc", | 13 "mus_demo.cc", |
14 "mus_demo.h", | 14 "mus_demo.h", |
15 "window_tree_data.cc", | |
16 "window_tree_data.h", | |
17 ] | 15 ] |
18 | 16 |
19 public_deps = [ | 17 public_deps = [ |
20 "//services/service_manager/public/cpp:sources", | 18 "//services/service_manager/public/cpp:sources", |
21 "//skia", | 19 "//skia", |
22 ] | 20 ] |
23 | 21 |
24 deps = [ | 22 deps = [ |
25 "//base", | 23 "//base", |
26 "//mojo/public/cpp/bindings", | 24 "//mojo/public/cpp/bindings", |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 } | 87 } |
90 | 88 |
91 catalog("mus_demo_unittests_catalog") { | 89 catalog("mus_demo_unittests_catalog") { |
92 embedded_services = [ ":test_manifest" ] | 90 embedded_services = [ ":test_manifest" ] |
93 | 91 |
94 standalone_services = [ | 92 standalone_services = [ |
95 ":manifest", | 93 ":manifest", |
96 "//services/ui:manifest", | 94 "//services/ui:manifest", |
97 ] | 95 ] |
98 } | 96 } |
OLD | NEW |