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("//third_party/mojo/src/mojo/public/mojo.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo.gni") |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 import("//mojo/generate_mojo_shell_assets_list.gni") | 10 import("//mojo/generate_mojo_shell_assets_list.gni") |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 ] | 43 ] |
44 outputs = [ | 44 outputs = [ |
45 "$root_out_dir/lib.stripped/libmandoline_runner.so", | 45 "$root_out_dir/lib.stripped/libmandoline_runner.so", |
46 ] | 46 ] |
47 } | 47 } |
48 | 48 |
49 copy_ex("copy_mandoline_assets") { | 49 copy_ex("copy_mandoline_assets") { |
50 clear_dir = true | 50 clear_dir = true |
51 dest = mandoline_assets_dir | 51 dest = mandoline_assets_dir |
52 deps = [ | 52 deps = [ |
53 "//components/devtools_service", | |
54 "//components/html_viewer", | 53 "//components/html_viewer", |
55 "//components/view_manager", | 54 "//components/view_manager", |
56 "//components/view_manager/surfaces", | 55 "//components/view_manager/surfaces", |
57 "//mandoline/services/core_services", | 56 "//mandoline/services/core_services", |
58 "//mojo/runner:bootstrap", | 57 "//mojo/runner:bootstrap", |
59 "//mojo/runner:bootstrap_java", | 58 "//mojo/runner:bootstrap_java", |
60 "//mojo/services/network", | 59 "//mojo/services/network", |
61 ] | 60 ] |
62 sources = [ | 61 sources = [ |
63 "$root_out_dir/core_services.mojo", | 62 "$root_out_dir/core_services.mojo", |
64 "$root_out_dir/devtools_service.mojo", | |
65 "$root_out_dir/lib.stripped/libbootstrap.so", | 63 "$root_out_dir/lib.stripped/libbootstrap.so", |
66 "$root_out_dir/network_service.mojo", | 64 "$root_out_dir/network_service.mojo", |
67 "$root_out_dir/obj/mojo/runner/bootstrap_java.dex.jar", | 65 "$root_out_dir/obj/mojo/runner/bootstrap_java.dex.jar", |
68 "$root_out_dir/surfaces_service.mojo", | 66 "$root_out_dir/surfaces_service.mojo", |
69 ] | 67 ] |
70 | 68 |
71 if (use_aura) { | 69 if (use_aura) { |
72 deps += [ | 70 deps += [ |
73 "//mandoline/ui/browser", | 71 "//mandoline/ui/browser", |
74 "//mandoline/ui/omnibox", | 72 "//mandoline/ui/omnibox", |
(...skipping 29 matching lines...) Expand all Loading... |
104 deps = [ | 102 deps = [ |
105 ":build_mandoline_assets", | 103 ":build_mandoline_assets", |
106 ":copy_mandoline_runner", | 104 ":copy_mandoline_runner", |
107 "//mojo/runner:java", | 105 "//mojo/runner:java", |
108 "//mojo/runner:resources", | 106 "//mojo/runner:resources", |
109 "//base:base_java", | 107 "//base:base_java", |
110 "//components/view_manager:view_manager_java", | 108 "//components/view_manager:view_manager_java", |
111 "//third_party/android_tools:google_play_services_default_resources", | 109 "//third_party/android_tools:google_play_services_default_resources", |
112 ] | 110 ] |
113 } | 111 } |
OLD | NEW |