| 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/service_manager/public/cpp/service.gni") |
| 6 import("//services/shell/public/service_manifest.gni") | 6 import("//services/service_manager/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 "bitmap_uploader.cc", | 11 "bitmap_uploader.cc", |
| 12 "bitmap_uploader.h", | 12 "bitmap_uploader.h", |
| 13 "main.cc", | 13 "main.cc", |
| 14 "mus_demo.cc", | 14 "mus_demo.cc", |
| 15 "mus_demo.h", | 15 "mus_demo.h", |
| 16 ] | 16 ] |
| 17 | 17 |
| 18 deps = [ | 18 deps = [ |
| 19 "//base", | 19 "//base", |
| 20 "//mojo/public/cpp/bindings", | 20 "//mojo/public/cpp/bindings", |
| 21 "//services/shell/public/cpp", | 21 "//services/service_manager/public/cpp", |
| 22 "//services/shell/public/cpp:sources", | 22 "//services/service_manager/public/cpp:sources", |
| 23 "//services/ui/public/cpp", | 23 "//services/ui/public/cpp", |
| 24 "//services/ui/public/cpp:internal", | 24 "//services/ui/public/cpp:internal", |
| 25 "//services/ui/public/interfaces", | 25 "//services/ui/public/interfaces", |
| 26 "//skia", | 26 "//skia", |
| 27 "//ui/gfx/geometry", | 27 "//ui/gfx/geometry", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 data_deps = [ | 30 data_deps = [ |
| 31 ":manifest", | 31 ":manifest", |
| 32 "//services/ui", | 32 "//services/ui", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 47 test("mus_demo_unittests") { | 47 test("mus_demo_unittests") { |
| 48 testonly = true | 48 testonly = true |
| 49 | 49 |
| 50 sources = [ | 50 sources = [ |
| 51 "mus_demo_unittests.cc", | 51 "mus_demo_unittests.cc", |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 deps = [ | 54 deps = [ |
| 55 ":demo", | 55 ":demo", |
| 56 "//base", | 56 "//base", |
| 57 "//services/shell/public/cpp", | 57 "//services/service_manager/public/cpp", |
| 58 "//services/shell/public/cpp:service_test_support", | 58 "//services/service_manager/public/cpp:service_test_support", |
| 59 "//services/ui/common:run_all_shelltests", | 59 "//services/ui/common:run_all_shelltests", |
| 60 "//services/ui/public/interfaces", | 60 "//services/ui/public/interfaces", |
| 61 "//testing/gtest", | 61 "//testing/gtest", |
| 62 ] | 62 ] |
| 63 | 63 |
| 64 data_deps = [ | 64 data_deps = [ |
| 65 ":mus_demo", | 65 ":mus_demo", |
| 66 ":test_manifest", | 66 ":test_manifest", |
| 67 ] | 67 ] |
| 68 } | 68 } |
| 69 | 69 |
| 70 group("demo") { | 70 group("demo") { |
| 71 deps = [ | 71 deps = [ |
| 72 ":mus_demo", | 72 ":mus_demo", |
| 73 ] | 73 ] |
| 74 } | 74 } |
| OLD | NEW |