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

Unified Diff: base/BUILD.gn

Issue 1291793007: GN(android): Add scripts & runtime logic for installing _managed apks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-managed-install
Patch Set: javadoc & faster managed_install.py when --device specified Created 5 years, 4 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: base/BUILD.gn
diff --git a/base/BUILD.gn b/base/BUILD.gn
index ccb580f1dab092a83d7307956864eabd033b4c53..619c38eb5ac54be9dab784225c3110e5dac418c0 100644
--- a/base/BUILD.gn
+++ b/base/BUILD.gn
@@ -1585,6 +1585,15 @@ if (is_android) {
]
DEPRECATED_java_in_dir = "android/java/src"
+ if (is_debug) {
+ java_files = [
+ "android/java/debug_src/org/chromium/base/ManagedInstall.java",
+ "android/java/debug_src/org/chromium/base/Reflect.java",
+ ]
+ } else {
+ java_files =
+ [ "android/java/release_src/org/chromium/base/ManagedInstall.java" ]
Lei Zhang 2015/08/20 02:01:48 Can this be: java_files = [ "android/java/release
agrieve 2015/08/20 02:11:05 No - the files with the same name are different (i
Lei Zhang 2015/08/20 02:14:25 Whoops, n/m.
+ }
# A new version of NativeLibraries.java (with the actual correct values)
# will be created when creating an apk.

Powered by Google App Engine
This is Rietveld 408576698