| 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 |
| 11 mandoline_assets_dir = "$root_build_dir/mandoline_assets" | 11 mandoline_assets_dir = "$root_build_dir/mandoline_assets" |
| 12 | 12 |
| 13 group("android") { | 13 group("android") { |
| 14 deps = [ | 14 deps = [ |
| 15 ":mandoline_apk", | 15 ":mandoline_apk", |
| 16 ] | 16 ] |
| 17 } | 17 } |
| 18 | 18 |
| 19 executable("mandoline_runner") { | 19 executable("mandoline_runner") { |
| 20 deps = [ | 20 deps = [ |
| 21 ":jni_headers", | 21 ":jni_headers", |
| 22 "//base", |
| 22 "//mandoline/ui/browser/public/interfaces", | 23 "//mandoline/ui/browser/public/interfaces", |
| 23 "//mojo/common", | 24 "//mojo/common", |
| 24 "//mojo/environment:chromium", | 25 "//mojo/environment:chromium", |
| 26 "//mojo/runner:lib", |
| 25 "//mojo/runner:mojo_runner_lib", | 27 "//mojo/runner:mojo_runner_lib", |
| 26 ] | 28 ] |
| 27 | 29 |
| 28 sources = [ | 30 sources = [ |
| 29 "../core_services_initialization.cc", | 31 "../core_services_initialization.cc", |
| 30 "mandoline_activity.cc", | 32 "mandoline_activity.cc", |
| 31 "mandoline_context_init.cc", | 33 "mandoline_context_init.cc", |
| 32 ] | 34 ] |
| 33 | 35 |
| 34 # On android, the executable is also the native library used by the apk. | 36 # On android, the executable is also the native library used by the apk. |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 ":copy_mandoline_runner", | 128 ":copy_mandoline_runner", |
| 127 ":java", | 129 ":java", |
| 128 ":mandoline_apk_resources", | 130 ":mandoline_apk_resources", |
| 129 "//mojo/runner:java", | 131 "//mojo/runner:java", |
| 130 "//mojo/runner:resources", | 132 "//mojo/runner:resources", |
| 131 "//base:base_java", | 133 "//base:base_java", |
| 132 "//third_party/android_tools:google_play_services_default_resources", | 134 "//third_party/android_tools:google_play_services_default_resources", |
| 133 "//ui/platform_window/android:platform_window_java", | 135 "//ui/platform_window/android:platform_window_java", |
| 134 ] | 136 ] |
| 135 } | 137 } |
| OLD | NEW |