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", |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 "android/org/domokit/sky/shell/SkyMain.java", | 108 "android/org/domokit/sky/shell/SkyMain.java", |
109 "android/org/domokit/sky/shell/TracingController.java", | 109 "android/org/domokit/sky/shell/TracingController.java", |
110 ] | 110 ] |
111 | 111 |
112 deps = [ | 112 deps = [ |
113 "//base:base_java", | 113 "//base:base_java", |
114 "//mojo/android:system_java", | 114 "//mojo/android:system_java", |
115 "//mojo/public/interfaces/application:application_java", | 115 "//mojo/public/interfaces/application:application_java", |
116 "//mojo/public/java:bindings", | 116 "//mojo/public/java:bindings", |
117 "//mojo/public/java:system", | 117 "//mojo/public/java:system", |
| 118 "//mojo/services/keyboard/public/interfaces:interfaces_java", |
118 "//mojo/services/network/public/interfaces:interfaces_java", | 119 "//mojo/services/network/public/interfaces:interfaces_java", |
119 "//services/keyboard", | 120 "//services/keyboard", |
| 121 "//sky/services/activity:activity_lib", |
| 122 "//sky/services/activity:interfaces_java", |
120 "//sky/services/engine:engine_java", | 123 "//sky/services/engine:engine_java", |
121 "//sky/services/oknet", | 124 "//sky/services/oknet", |
122 "//sky/services/intents:intents_lib", | |
123 ] | 125 ] |
124 } | 126 } |
125 | 127 |
126 copy_ex("assets") { | 128 copy_ex("assets") { |
127 clear_dir = true | 129 clear_dir = true |
128 dest = "$root_build_dir/sky_shell/assets" | 130 dest = "$root_build_dir/sky_shell/assets" |
129 sources = [ | 131 sources = [ |
130 "$root_build_dir/icudtl.dat", | 132 "$root_build_dir/icudtl.dat", |
131 ] | 133 ] |
132 deps = [ | 134 deps = [ |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 ] | 190 ] |
189 | 191 |
190 deps = common_deps + [ | 192 deps = common_deps + [ |
191 ":common", | 193 ":common", |
192 "//sky/services/testing", | 194 "//sky/services/testing", |
193 ] | 195 ] |
194 } | 196 } |
195 } else { | 197 } else { |
196 assert(false, "Unsupported platform") | 198 assert(false, "Unsupported platform") |
197 } | 199 } |
OLD | NEW |