OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 common_deps = [ | 5 common_deps = [ |
6 "//base", | 6 "//base", |
7 "//base:i18n", | 7 "//base:i18n", |
8 "//build/config/sanitizers:deps", | 8 "//build/config/sanitizers:deps", |
9 "//dart/runtime:libdart", | 9 "//dart/runtime:libdart", |
10 "//mojo/common", | 10 "//mojo/common", |
11 "//mojo/edk/system", | 11 "//mojo/edk/system", |
12 "//mojo/public/cpp/application", | 12 "//mojo/public/cpp/application", |
13 "//mojo/public/interfaces/application", | 13 "//mojo/public/interfaces/application", |
14 "//mojo/services/asset_bundle/public/interfaces", | 14 "//mojo/services/asset_bundle/public/interfaces", |
15 "//mojo/services/navigation/public/interfaces", | 15 "//mojo/services/navigation/public/interfaces", |
16 "//mojo/services/network/public/interfaces", | 16 "//mojo/services/network/public/interfaces", |
17 "//services/asset_bundle:lib", | 17 "//services/asset_bundle:lib", |
18 "//skia", | 18 "//skia", |
19 "//sky/engine", | 19 "//sky/engine", |
20 "//sky/engine/tonic", | 20 "//sky/engine/tonic", |
21 "//sky/engine/wtf", | 21 "//sky/engine/wtf", |
| 22 "//sky/services/engine", |
22 "//sky/services/platform", | 23 "//sky/services/platform", |
23 "//sky/services/viewport", | |
24 "//sky/shell/dart", | 24 "//sky/shell/dart", |
25 "//ui/gfx/geometry", | 25 "//ui/gfx/geometry", |
26 "//ui/gl", | 26 "//ui/gl", |
27 ] | 27 ] |
28 | 28 |
29 source_set("common") { | 29 source_set("common") { |
30 sources = [ | 30 sources = [ |
31 "gpu/ganesh_context.cc", | 31 "gpu/ganesh_context.cc", |
32 "gpu/ganesh_context.h", | 32 "gpu/ganesh_context.h", |
33 "gpu/ganesh_surface.cc", | 33 "gpu/ganesh_surface.cc", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 ] | 109 ] |
110 | 110 |
111 deps = [ | 111 deps = [ |
112 "//base:base_java", | 112 "//base:base_java", |
113 "//mojo/android:system_java", | 113 "//mojo/android:system_java", |
114 "//mojo/public/interfaces/application:application_java", | 114 "//mojo/public/interfaces/application:application_java", |
115 "//mojo/public/java:bindings", | 115 "//mojo/public/java:bindings", |
116 "//mojo/public/java:system", | 116 "//mojo/public/java:system", |
117 "//mojo/services/network/public/interfaces:interfaces_java", | 117 "//mojo/services/network/public/interfaces:interfaces_java", |
118 "//services/keyboard", | 118 "//services/keyboard", |
| 119 "//sky/services/engine:engine_java", |
119 "//sky/services/oknet", | 120 "//sky/services/oknet", |
120 "//sky/services/viewport:viewport_java", | |
121 ] | 121 ] |
122 } | 122 } |
123 | 123 |
124 copy_ex("assets") { | 124 copy_ex("assets") { |
125 clear_dir = true | 125 clear_dir = true |
126 dest = "$root_build_dir/sky_shell/assets" | 126 dest = "$root_build_dir/sky_shell/assets" |
127 sources = [ | 127 sources = [ |
128 "$root_build_dir/icudtl.dat", | 128 "$root_build_dir/icudtl.dat", |
129 ] | 129 ] |
130 deps = [ | 130 deps = [ |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 ] | 186 ] |
187 | 187 |
188 deps = common_deps + [ | 188 deps = common_deps + [ |
189 ":common", | 189 ":common", |
190 "//sky/services/testing", | 190 "//sky/services/testing", |
191 ] | 191 ] |
192 } | 192 } |
193 } else { | 193 } else { |
194 assert(false, "Unsupported platform") | 194 assert(false, "Unsupported platform") |
195 } | 195 } |
OLD | NEW |