OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 | 6 |
7 group("surfaces_app") { | 7 group("surfaces_app") { |
8 deps = [ | 8 deps = [ |
9 ":child_app", | 9 ":child_app", |
10 ":child_gl_app", | 10 ":child_gl_app", |
11 ":parent_app", | 11 ":parent_app", |
12 ] | 12 ] |
13 } | 13 } |
14 | 14 |
15 shared_library("parent_app") { | 15 shared_library("parent_app") { |
16 output_name = "surfaces_app" | 16 output_name = "mojo_surfaces_app" |
17 | 17 |
18 deps = [ | 18 deps = [ |
19 ":bindings", | 19 ":bindings", |
20 ":util", | 20 ":util", |
21 "//base", | 21 "//base", |
22 "//cc", | 22 "//cc", |
23 "//cc/surfaces", | 23 "//cc/surfaces", |
24 "//skia", | 24 "//skia", |
25 "//ui/gfx", | 25 "//ui/gfx", |
26 "//ui/gfx/geometry", | 26 "//ui/gfx/geometry", |
(...skipping 12 matching lines...) Expand all Loading... |
39 | 39 |
40 sources = [ | 40 sources = [ |
41 "embedder.cc", | 41 "embedder.cc", |
42 "embedder.h", | 42 "embedder.h", |
43 "surfaces_app.cc", | 43 "surfaces_app.cc", |
44 ] | 44 ] |
45 } | 45 } |
46 | 46 |
47 | 47 |
48 shared_library("child_app") { | 48 shared_library("child_app") { |
49 output_name = "surfaces_child_app" | 49 output_name = "mojo_surfaces_child_app" |
50 | 50 |
51 deps = [ | 51 deps = [ |
52 ":bindings", | 52 ":bindings", |
53 ":util", | 53 ":util", |
54 "//base", | 54 "//base", |
55 "//cc", | 55 "//cc", |
56 "//cc/surfaces", | 56 "//cc/surfaces", |
57 "//mojo/application", | 57 "//mojo/application", |
58 "//mojo/common", | 58 "//mojo/common", |
59 "//mojo/converters/geometry", | 59 "//mojo/converters/geometry", |
(...skipping 10 matching lines...) Expand all Loading... |
70 ] | 70 ] |
71 | 71 |
72 sources = [ | 72 sources = [ |
73 "child_app.cc", | 73 "child_app.cc", |
74 "child_impl.cc", | 74 "child_impl.cc", |
75 "child_impl.h", | 75 "child_impl.h", |
76 ] | 76 ] |
77 } | 77 } |
78 | 78 |
79 shared_library("child_gl_app") { | 79 shared_library("child_gl_app") { |
80 output_name = "surfaces_child_gl_app" | 80 output_name = "mojo_surfaces_child_gl_app" |
81 | 81 |
82 deps = [ | 82 deps = [ |
83 ":bindings", | 83 ":bindings", |
84 ":util", | 84 ":util", |
85 "//base", | 85 "//base", |
86 "//cc", | 86 "//cc", |
87 "//cc/surfaces", | 87 "//cc/surfaces", |
88 "//gpu/command_buffer/common", | 88 "//gpu/command_buffer/common", |
89 "//mojo/application", | 89 "//mojo/application", |
90 "//mojo/common", | 90 "//mojo/common", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 | 129 |
130 mojom("bindings") { | 130 mojom("bindings") { |
131 deps = [ | 131 deps = [ |
132 "//mojo/services/public/interfaces/geometry", | 132 "//mojo/services/public/interfaces/geometry", |
133 "//mojo/services/public/interfaces/surfaces", | 133 "//mojo/services/public/interfaces/surfaces", |
134 "//mojo/services/public/interfaces/surfaces:surface_id", | 134 "//mojo/services/public/interfaces/surfaces:surface_id", |
135 ] | 135 ] |
136 | 136 |
137 sources = [ "child.mojom" ] | 137 sources = [ "child.mojom" ] |
138 } | 138 } |
OLD | NEW |