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 assert(is_android) | 5 assert(is_android) |
6 | 6 |
7 import("//build/config/android/config.gni") | 7 import("//build/config/android/config.gni") |
8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
9 import("//mojo/generate_mojo_shell_assets_list.gni") | 9 import("//mojo/generate_mojo_shell_assets_list.gni") |
10 | 10 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 ] | 42 ] |
43 outputs = [ | 43 outputs = [ |
44 "$root_out_dir/lib.stripped/libmandoline_runner.so", | 44 "$root_out_dir/lib.stripped/libmandoline_runner.so", |
45 ] | 45 ] |
46 } | 46 } |
47 | 47 |
48 copy_ex("copy_mandoline_assets") { | 48 copy_ex("copy_mandoline_assets") { |
49 clear_dir = true | 49 clear_dir = true |
50 dest = mandoline_assets_dir | 50 dest = mandoline_assets_dir |
51 deps = [ | 51 deps = [ |
| 52 "//components/devtools_service", |
52 "//components/html_viewer", | 53 "//components/html_viewer", |
53 "//components/view_manager", | 54 "//components/view_manager", |
54 "//components/view_manager/surfaces", | 55 "//components/view_manager/surfaces", |
55 "//mandoline/services/core_services", | 56 "//mandoline/services/core_services", |
56 "//mojo/runner:bootstrap", | 57 "//mojo/runner:bootstrap", |
57 "//mojo/runner:bootstrap_java", | 58 "//mojo/runner:bootstrap_java", |
58 "//mojo/services/network", | 59 "//mojo/services/network", |
59 ] | 60 ] |
60 sources = [ | 61 sources = [ |
61 "$root_out_dir/core_services.mojo", | 62 "$root_out_dir/core_services.mojo", |
| 63 "$root_out_dir/devtools_service.mojo", |
62 "$root_out_dir/lib.stripped/libbootstrap.so", | 64 "$root_out_dir/lib.stripped/libbootstrap.so", |
63 "$root_out_dir/network_service.mojo", | 65 "$root_out_dir/network_service.mojo", |
64 "$root_out_dir/obj/mojo/runner/bootstrap_java.dex.jar", | 66 "$root_out_dir/obj/mojo/runner/bootstrap_java.dex.jar", |
65 "$root_out_dir/surfaces_service.mojo", | 67 "$root_out_dir/surfaces_service.mojo", |
66 ] | 68 ] |
67 | 69 |
68 # Directories can't be specified as sources so pass manually to the script. | 70 # Directories can't be specified as sources so pass manually to the script. |
69 args = | 71 args = |
70 [ "--files=" + rebase_path("$root_out_dir/html_viewer", root_build_dir) ] | 72 [ "--files=" + rebase_path("$root_out_dir/html_viewer", root_build_dir) ] |
71 | 73 |
(...skipping 28 matching lines...) Expand all Loading... |
100 deps = [ | 102 deps = [ |
101 ":build_mandoline_assets", | 103 ":build_mandoline_assets", |
102 ":copy_mandoline_runner", | 104 ":copy_mandoline_runner", |
103 "//mojo/runner:java", | 105 "//mojo/runner:java", |
104 "//mojo/runner:resources", | 106 "//mojo/runner:resources", |
105 "//base:base_java", | 107 "//base:base_java", |
106 "//components/view_manager:view_manager_java", | 108 "//components/view_manager:view_manager_java", |
107 "//third_party/android_tools:google_play_services_default_resources", | 109 "//third_party/android_tools:google_play_services_default_resources", |
108 ] | 110 ] |
109 } | 111 } |
OLD | NEW |