| Index: chrome/android/webapk/libs/runtime_library/BUILD.gn
|
| diff --git a/chrome/android/webapk/libs/runtime_library/BUILD.gn b/chrome/android/webapk/libs/runtime_library/BUILD.gn
|
| index 2060aa70d1d78dd0509cd071611f4fec813df359..62d89ebbeb73f7256c5d19281ecc749a0828a95b 100644
|
| --- a/chrome/android/webapk/libs/runtime_library/BUILD.gn
|
| +++ b/chrome/android/webapk/libs/runtime_library/BUILD.gn
|
| @@ -13,7 +13,19 @@ android_aidl("webapk_service_aidl") {
|
| }
|
|
|
| android_library("runtime_library") {
|
| + dex_path = "$target_gen_dir/web_apk.dex"
|
| java_files =
|
| [ "src/org/chromium/webapk/lib/runtime_library/WebApkServiceImpl.java" ]
|
| srcjar_deps = [ ":webapk_service_aidl" ]
|
| }
|
| +
|
| +android_assets("runtime_library_assets") {
|
| + sources = [
|
| + "$target_gen_dir/web_apk.dex",
|
| + ]
|
| + disable_compression = true
|
| +
|
| + deps = [
|
| + ":runtime_library",
|
| + ]
|
| +}
|
|
|