| 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/shell/public/cpp/service.gni") | 5 import("//services/shell/public/cpp/service.gni") |
| 6 import("//services/shell/public/service_manifest.gni") | 6 import("//services/shell/public/service_manifest.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 service("mus_demo") { | 9 service("mus_demo") { |
| 10 sources = [ | 10 sources = [ |
| 11 "main.cc", | 11 "main.cc", |
| 12 "mus_demo.cc", | 12 "mus_demo.cc", |
| 13 "mus_demo.h", | 13 "mus_demo.h", |
| 14 ] | 14 ] |
| 15 | 15 |
| 16 deps = [ | 16 deps = [ |
| 17 "//base", | 17 "//base", |
| 18 "//mojo/public/cpp/bindings", | 18 "//mojo/public/cpp/bindings", |
| 19 "//services/shell/public/cpp", | 19 "//services/shell/public/cpp", |
| 20 "//services/shell/public/cpp:sources", | 20 "//services/shell/public/cpp:sources", |
| 21 "//services/ui/public/cpp", | 21 "//services/ui/public/cpp", |
| 22 "//services/ui/public/cpp:internal", |
| 22 "//services/ui/public/interfaces", | 23 "//services/ui/public/interfaces", |
| 23 "//skia", | 24 "//skia", |
| 24 "//ui/gfx/geometry", | 25 "//ui/gfx/geometry", |
| 25 ] | 26 ] |
| 26 | 27 |
| 27 data_deps = [ | 28 data_deps = [ |
| 28 ":manifest", | 29 ":manifest", |
| 29 "//services/ui", | 30 "//services/ui", |
| 30 ] | 31 ] |
| 31 } | 32 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 61 data_deps = [ | 62 data_deps = [ |
| 62 ":test_manifest", | 63 ":test_manifest", |
| 63 ] | 64 ] |
| 64 } | 65 } |
| 65 | 66 |
| 66 group("demo") { | 67 group("demo") { |
| 67 deps = [ | 68 deps = [ |
| 68 ":mus_demo", | 69 ":mus_demo", |
| 69 ] | 70 ] |
| 70 } | 71 } |
| OLD | NEW |