| 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") | |
| 8 import("//build/config/android/config.gni") | 7 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 10 import("//mojo/generate_mojo_shell_assets_list.gni") | 9 import("//mojo/generate_mojo_shell_assets_list.gni") |
| 11 | 10 |
| 12 mandoline_assets_dir = "$root_build_dir/mandoline_assets" | 11 mandoline_assets_dir = "$root_build_dir/mandoline_assets" |
| 13 | 12 |
| 14 group("android") { | 13 group("android") { |
| 15 deps = [ | 14 deps = [ |
| 16 ":mandoline_apk", | 15 ":mandoline_apk", |
| 17 ] | 16 ] |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 deps = [ | 103 deps = [ |
| 105 ":build_mandoline_assets", | 104 ":build_mandoline_assets", |
| 106 ":copy_mandoline_runner", | 105 ":copy_mandoline_runner", |
| 107 "//mojo/runner:java", | 106 "//mojo/runner:java", |
| 108 "//mojo/runner:resources", | 107 "//mojo/runner:resources", |
| 109 "//base:base_java", | 108 "//base:base_java", |
| 110 "//components/view_manager:view_manager_java", | 109 "//components/view_manager:view_manager_java", |
| 111 "//third_party/android_tools:google_play_services_default_resources", | 110 "//third_party/android_tools:google_play_services_default_resources", |
| 112 ] | 111 ] |
| 113 } | 112 } |
| OLD | NEW |