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/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 group("runner") { | 9 group("runner") { |
10 testonly = true | 10 testonly = true |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 deps = [ | 219 deps = [ |
220 "//base:base_java", | 220 "//base:base_java", |
221 ] | 221 ] |
222 | 222 |
223 dex_path = "$target_out_dir/bootstrap_java.dex.jar" | 223 dex_path = "$target_out_dir/bootstrap_java.dex.jar" |
224 } | 224 } |
225 | 225 |
226 shared_library("bootstrap") { | 226 shared_library("bootstrap") { |
227 sources = [ | 227 sources = [ |
228 "android/bootstrap.cc", | 228 "android/bootstrap.cc", |
| 229 "register_local_aliases.cc", |
| 230 "register_local_aliases.h", |
229 ] | 231 ] |
230 deps = [ | 232 deps = [ |
231 ":jni_headers", | 233 ":jni_headers", |
232 ":lib", | 234 ":lib", |
233 ":run_android_application_function", | 235 ":run_android_application_function", |
234 "//base", | 236 "//base", |
235 "//build/config/sanitizers:deps", | 237 "//build/config/sanitizers:deps", |
236 ] | 238 ] |
237 } | 239 } |
238 | 240 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 ":copy_mojo_runner", | 318 ":copy_mojo_runner", |
317 ":java", | 319 ":java", |
318 ":mojo_runner_apptests_assets", | 320 ":mojo_runner_apptests_assets", |
319 ":resources", | 321 ":resources", |
320 "//base:base_java", | 322 "//base:base_java", |
321 "//ui/platform_window/android:platform_window_java", | 323 "//ui/platform_window/android:platform_window_java", |
322 google_play_services_resources, | 324 google_play_services_resources, |
323 ] | 325 ] |
324 } | 326 } |
325 } | 327 } |
OLD | NEW |