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

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

Issue 2101433002: WebAPK: Move MainActivity#onCreate() to runtime library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'webapk_more_meta2' into webapk_more_meta2_loader Created 4 years, 6 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 71e925c9fe768f21d3ece723cecbc66afb1d051e..ab464ce768dac10c689fcfd807858916001c9504 100644
--- a/chrome/android/webapk/libs/runtime_library/BUILD.gn
+++ b/chrome/android/webapk/libs/runtime_library/BUILD.gn
@@ -23,9 +23,14 @@ android_aidl("webapk_service_aidl") {
android_library("runtime_library") {
dex_path = "$target_gen_dir/$runtime_library_dex_asset_name"
- java_files =
- [ "src/org/chromium/webapk/lib/runtime_library/WebApkServiceImpl.java" ]
+ java_files = [
+ "src/org/chromium/webapk/lib/runtime_library/HostBrowserLauncher.java",
+ "src/org/chromium/webapk/lib/runtime_library/WebApkServiceImpl.java",
+ ]
srcjar_deps = [ ":webapk_service_aidl" ]
+ deps = [
+ "//chrome/android/webapk/libs/common",
+ ]
}
android_assets("runtime_library_assets") {

Powered by Google App Engine
This is Rietveld 408576698