Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1568)

Unified Diff: chrome/android/webapk/libs/runtime_library/BUILD.gn

Issue 2011613003: Upstream: Extract "WebAPK service" implementation from Chrome APK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698