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

Unified Diff: build/config/android/rules.gni

Issue 2069313002: Removed keeps for unused member variables. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test addding R.dex 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
« no previous file with comments | « no previous file | chrome/android/java/proguard.flags » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/android/rules.gni
diff --git a/build/config/android/rules.gni b/build/config/android/rules.gni
index c21dfad09dd556fdbbbf7faf0b296098efa09ba7..2f1776a2e8fc94fe22d231ce0afa7a928dca9601 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -1809,6 +1809,14 @@ if (enable_java_templates) {
}
_dex_sources = [ _proguard_output_jar_path ]
_dex_deps = [ ":$_proguard_target" ]
+ if (defined(invoker.apk_under_test)) {
+ _apk_under_test_dex_path =
+ get_label_info(invoker.apk_under_test, "target_gen_dir") + "/" +
+ get_label_info(invoker.apk_under_test, "name") + "/" +
+ get_label_info(invoker.apk_under_test, "name") + ".dex.jar"
+ _dex_sources += [ _apk_under_test_dex_path ]
+ _dex_deps += [ "${invoker.apk_under_test}__java" ]
+ }
} else {
if (enable_multidex) {
_dex_sources = [ _jar_path ]
« no previous file with comments | « no previous file | chrome/android/java/proguard.flags » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698