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

Unified Diff: third_party/android_support_test_runner/BUILD.gn

Issue 2154023002: adding action mode tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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: third_party/android_support_test_runner/BUILD.gn
diff --git a/third_party/android_support_test_runner/BUILD.gn b/third_party/android_support_test_runner/BUILD.gn
index 61e15f935e35072bed67a5ef001e102cee725399..64eb4806a6414b2ba628c8a5bd9c936d6f177c72 100644
--- a/third_party/android_support_test_runner/BUILD.gn
+++ b/third_party/android_support_test_runner/BUILD.gn
@@ -5,8 +5,18 @@
import("//build/config/android/rules.gni")
mikecase (-- gone --) 2016/07/25 21:19:01 Would prefer if these additions to the third_party
aluo 2016/08/08 23:20:06 Yea this is a separate cl, shouldn't be part of th
android_java_prebuilt("runner_java") {
- jar_path = "lib/runner-0.3-release-no-dep.jar"
+ jar_path = "lib/runner-0.5-release-no-dep.jar"
deps = [
+ ":exposed_instrumentation_api_publish_java",
+ ":junit_java",
"//third_party/guava:guava_java",
]
}
+
+android_java_prebuilt("exposed_instrumentation_api_publish_java") {
+ jar_path = "lib/exposed-instrumentation-api-publish-0.5-no-dep.jar"
mikecase (-- gone --) 2016/07/25 21:19:01 this jar needs to get downloaded in a DEPs hook.
+}
+
+android_java_prebuilt("junit_java") {
mikecase (-- gone --) 2016/07/25 21:19:01 shouldn't need this. There is a //third_party/juni
+ jar_path = "lib/junit-4.12-release-no-dep.jar"
+}

Powered by Google App Engine
This is Rietveld 408576698