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

Unified Diff: third_party/robolectric/BUILD.gn

Issue 2506363006: [android] Fix robolectric shadows-core jar names. (Closed)
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/robolectric/BUILD.gn
diff --git a/third_party/robolectric/BUILD.gn b/third_party/robolectric/BUILD.gn
index 732980e26426275a768e2b83279b6efb0250c8ce..a766c0491192ecf13a10d2150ae6ad7deaf57c5b 100644
--- a/third_party/robolectric/BUILD.gn
+++ b/third_party/robolectric/BUILD.gn
@@ -588,6 +588,8 @@ template("shadows_core") {
}
java_library(target_name) {
+ forward_variables_from(invoker, [ "output_name" ])
+
# TODO(mikecase): Remove this once crbug.com/638875 is fixed.
enable_incremental_javac_override = false
@@ -654,11 +656,13 @@ template("shadows_core") {
shadows_core("shadows-core-3.0-21_java") {
api_level = 21
android_sdk_deps = [ ":android-all-5.0.0_r2-robolectric-1_java" ]
+ output_name = "shadows-core-3.0-21"
}
shadows_core("shadows-core-3.0-18_java") {
api_level = 18
android_sdk_deps = [ ":android-all-4.3_r2-robolectric-0_java" ]
+ output_name = "shadows-core-3.0-18"
}
java_library("shadows-multidex-3.0_java") {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698