| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//services/catalog/public/tools/catalog.gni") | 6 import("//services/catalog/public/tools/catalog.gni") |
| 7 import("//services/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 import("//services/service_manager/public/tools/test/service_test.gni") | 9 import("//services/service_manager/public/tools/test/service_test.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "mus_demo_external.h", | 23 "mus_demo_external.h", |
| 24 ] | 24 ] |
| 25 } else { | 25 } else { |
| 26 sources += [ | 26 sources += [ |
| 27 "mus_demo_internal.cc", | 27 "mus_demo_internal.cc", |
| 28 "mus_demo_internal.h", | 28 "mus_demo_internal.h", |
| 29 ] | 29 ] |
| 30 } | 30 } |
| 31 | 31 |
| 32 public_deps = [ | 32 public_deps = [ |
| 33 "//services/service_manager/public/cpp:sources", | 33 "//services/service_manager/public/cpp", |
| 34 "//skia", | 34 "//skia", |
| 35 ] | 35 ] |
| 36 | 36 |
| 37 deps = [ | 37 deps = [ |
| 38 "//base", | 38 "//base", |
| 39 "//mojo/public/cpp/bindings", | 39 "//mojo/public/cpp/bindings", |
| 40 "//services/service_manager/public/cpp", | 40 "//services/service_manager/public/cpp", |
| 41 "//services/ui/public/cpp", | 41 "//services/ui/public/cpp", |
| 42 "//services/ui/public/cpp:internal", | 42 "//services/ui/public/cpp:internal", |
| 43 "//services/ui/public/interfaces", | 43 "//services/ui/public/interfaces", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 } | 108 } |
| 109 | 109 |
| 110 catalog("mus_demo_unittests_catalog") { | 110 catalog("mus_demo_unittests_catalog") { |
| 111 embedded_services = [ ":test_manifest" ] | 111 embedded_services = [ ":test_manifest" ] |
| 112 | 112 |
| 113 standalone_services = [ | 113 standalone_services = [ |
| 114 ":manifest", | 114 ":manifest", |
| 115 "//services/ui:manifest", | 115 "//services/ui:manifest", |
| 116 ] | 116 ] |
| 117 } | 117 } |
| OLD | NEW |