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/generate_mojo_shell_assets_list.gni") | 5 import("//mojo/generate_mojo_shell_assets_list.gni") |
6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
9 | 9 |
10 # We don't support building in the component build since mojo apps are | 10 # We don't support building in the component build since mojo apps are |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 sources += [ | 47 sources += [ |
48 "android/context_init.h", | 48 "android/context_init.h", |
49 "android/library_loader.cc", | 49 "android/library_loader.cc", |
50 "android/main.cc", | 50 "android/main.cc", |
51 "android/main.h", | 51 "android/main.h", |
52 ] | 52 ] |
53 | 53 |
54 deps += [ | 54 deps += [ |
55 ":jni_headers", | 55 ":jni_headers", |
56 "//components/mus", | 56 "//components/mus", |
| 57 "//components/mus/vm:lib", |
57 "//mojo/shell", | 58 "//mojo/shell", |
58 "//ui/gl", | 59 "//ui/gl", |
59 "//ui/platform_window/android", | 60 "//ui/platform_window/android", |
60 ] | 61 ] |
61 } | 62 } |
62 } | 63 } |
63 | 64 |
64 executable("mojo_runner") { | 65 executable("mojo_runner") { |
65 deps = [ | 66 deps = [ |
66 ":mojo_runner_lib", | 67 ":mojo_runner_lib", |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 | 295 |
295 copy_ex("copy_mojo_runner_apptests_assets") { | 296 copy_ex("copy_mojo_runner_apptests_assets") { |
296 testonly = true | 297 testonly = true |
297 clear_dir = true | 298 clear_dir = true |
298 dest = mojo_runner_apptests_assets_dir | 299 dest = mojo_runner_apptests_assets_dir |
299 | 300 |
300 deps = [ | 301 deps = [ |
301 ":bootstrap", | 302 ":bootstrap", |
302 ":bootstrap_java", | 303 ":bootstrap_java", |
303 "//components/clipboard:apptests", | 304 "//components/clipboard:apptests", |
304 "//components/mus:apptests", | 305 "//components/mus/vm:apptests", |
305 "//components/resource_provider:apptests", | 306 "//components/resource_provider:apptests", |
306 "//mojo/services/network:apptests", | 307 "//mojo/services/network:apptests", |
307 ] | 308 ] |
308 | 309 |
309 sources = [ | 310 sources = [ |
310 "$root_out_dir/obj/mojo/runner/bootstrap_java.dex.jar", | 311 "$root_out_dir/obj/mojo/runner/bootstrap_java.dex.jar", |
311 "$root_shlib_dir/${shlib_prefix}bootstrap$shlib_extension", | 312 "$root_shlib_dir/${shlib_prefix}bootstrap$shlib_extension", |
312 ] | 313 ] |
313 | 314 |
314 apptest_outputs = [ | 315 apptest_outputs = [ |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 ] | 483 ] |
483 | 484 |
484 deps = [ | 485 deps = [ |
485 "//base", | 486 "//base", |
486 "//mojo/application/public/cpp:test_support", | 487 "//mojo/application/public/cpp:test_support", |
487 "//mojo/runner/test:bindings", | 488 "//mojo/runner/test:bindings", |
488 "//mojo/services/network/public/interfaces", | 489 "//mojo/services/network/public/interfaces", |
489 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 490 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
490 ] | 491 ] |
491 } | 492 } |
OLD | NEW |