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

Unified Diff: shell/BUILD.gn

Issue 1439953002: Use debug apks for dev builds. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « build/android/lint/suppressions.xml ('k') | shell/android/apk/AndroidManifest.xml.jinja2 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/BUILD.gn
diff --git a/shell/BUILD.gn b/shell/BUILD.gn
index fbf9166839bf590fbcb90c1f84c5bee1dde2afcf..50929f600090c2edc1b6968cb4f3e1bbe9d27ae8 100644
--- a/shell/BUILD.gn
+++ b/shell/BUILD.gn
@@ -449,9 +449,11 @@ if (is_android) {
if (!is_official_build) {
manifest_package = "org.chromium.mojo.shell"
apk_name = "Mojo Shell (dev)"
+ debuggable = "true"
} else {
manifest_package = "io.mojoapps.launcher"
apk_name = "Mojo Shell"
+ debuggable = "false"
}
if (is_official_build) {
@@ -488,6 +490,7 @@ if (is_android) {
jinja_variables = [
"manifest_package=$manifest_package",
"apk_name=$apk_name",
+ "debuggable=$debuggable",
"version_code=$version_code",
"version_name=$version_name",
]
« no previous file with comments | « build/android/lint/suppressions.xml ('k') | shell/android/apk/AndroidManifest.xml.jinja2 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698