| 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", |
| 15 ] | 17 ] |
| 16 | 18 |
| 17 public_deps = [ | 19 public_deps = [ |
| 18 "//services/service_manager/public/cpp:sources", | 20 "//services/service_manager/public/cpp:sources", |
| 19 "//skia", | 21 "//skia", |
| 20 ] | 22 ] |
| 21 | 23 |
| 22 deps = [ | 24 deps = [ |
| 23 "//base", | 25 "//base", |
| 24 "//mojo/public/cpp/bindings", | 26 "//mojo/public/cpp/bindings", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 } | 89 } |
| 88 | 90 |
| 89 catalog("mus_demo_unittests_catalog") { | 91 catalog("mus_demo_unittests_catalog") { |
| 90 embedded_services = [ ":test_manifest" ] | 92 embedded_services = [ ":test_manifest" ] |
| 91 | 93 |
| 92 standalone_services = [ | 94 standalone_services = [ |
| 93 ":manifest", | 95 ":manifest", |
| 94 "//services/ui:manifest", | 96 "//services/ui:manifest", |
| 95 ] | 97 ] |
| 96 } | 98 } |
| OLD | NEW |