Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(707)

Side by Side Diff: services/ui/demo/BUILD.gn

Issue 2459123003: Unsplit the MUS demo. (Closed)
Patch Set: Fixed gn check Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | services/ui/demo/main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/service_manager/public/cpp/service.gni") 5 import("//services/service_manager/public/cpp/service.gni")
6 import("//services/service_manager/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 source_set("lib") {
10 sources = [
11 "main.cc",
12 "mus_demo_service.cc",
13 "mus_demo_service.h",
14 ]
15
16 deps = [
17 ":mus_demo_lib",
18 "//mojo/public/cpp/bindings",
19 "//services/service_manager/public/cpp",
20 "//services/service_manager/public/cpp:sources",
21 ]
22
23 data_deps = [
24 ":manifest",
25 ]
26 }
27
28 static_library("mus_demo_lib") {
29 sources = [ 10 sources = [
30 "bitmap_uploader.cc", 11 "bitmap_uploader.cc",
31 "bitmap_uploader.h", 12 "bitmap_uploader.h",
32 "mus_demo.cc", 13 "mus_demo.cc",
33 "mus_demo.h", 14 "mus_demo.h",
34 ] 15 ]
35 16
36 public_deps = [ 17 public_deps = [
18 "//services/service_manager/public/cpp:sources",
37 "//skia", 19 "//skia",
38 ] 20 ]
39 21
40 deps = [ 22 deps = [
41 "//base", 23 "//base",
42 "//mojo/public/cpp/bindings", 24 "//mojo/public/cpp/bindings",
43 "//services/service_manager/public/cpp", 25 "//services/service_manager/public/cpp",
44 "//services/ui/public/cpp", 26 "//services/ui/public/cpp",
45 "//services/ui/public/cpp:internal", 27 "//services/ui/public/cpp:internal",
46 "//services/ui/public/interfaces", 28 "//services/ui/public/interfaces",
47 "//ui/gfx/geometry", 29 "//ui/gfx/geometry",
48 ] 30 ]
31 }
32
33 service("mus_demo") {
34 sources = [
35 "main.cc",
36 ]
37
38 deps = [
39 ":lib",
40 ]
49 41
50 data_deps = [ 42 data_deps = [
51 ":manifest", 43 ":manifest",
52 "//services/ui", 44 "//services/ui",
53 ] 45 ]
54 } 46 }
55 47
56 service_manifest("manifest") { 48 service_manifest("manifest") {
57 name = "mus_demo" 49 name = "mus_demo"
58 source = "manifest.json" 50 source = "manifest.json"
(...skipping 26 matching lines...) Expand all
85 ":mus_demo", 77 ":mus_demo",
86 ":test_manifest", 78 ":test_manifest",
87 ] 79 ]
88 } 80 }
89 81
90 group("demo") { 82 group("demo") {
91 deps = [ 83 deps = [
92 ":mus_demo", 84 ":mus_demo",
93 ] 85 ]
94 } 86 }
OLDNEW
« no previous file with comments | « no previous file | services/ui/demo/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698