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

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

Issue 2473963003: Fix java target naming exceptions in third_party/ (Closed)
Patch Set: rebase Created 4 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/config/android/internal_rules.gni ('k') | build/secondary/third_party/android_tools/BUILD.gn » ('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 fbe7cffdfebed0934a1f2acfa68320ae6d6f683a..c2c403026b72066bd3a298558ebec1192c950b59 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -1620,7 +1620,8 @@ if (enable_java_templates) {
# Added emma to the target's classpath via its .build_config.
if (emma_coverage && !_emma_never_instrument) {
- possible_config_deps += [ "//third_party/android_tools:emma_device" ]
+ possible_config_deps +=
+ [ "//third_party/android_tools:emma_device_java" ]
}
proguard_enabled = _proguard_enabled
@@ -1785,7 +1786,7 @@ if (enable_java_templates) {
deps += [ "${invoker.apk_under_test}__java" ]
}
if (emma_coverage && !_emma_never_instrument) {
- deps += [ "//third_party/android_tools:emma_device" ]
+ deps += [ "//third_party/android_tools:emma_device_java" ]
}
}
« no previous file with comments | « build/config/android/internal_rules.gni ('k') | build/secondary/third_party/android_tools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698