| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
| 6 | 6 |
| 7 java_group("espresso_all_java") { | 7 java_group("espresso_all_java") { |
| 8 testonly = true | 8 testonly = true |
| 9 deps = [ | 9 deps = [ |
| 10 ":espresso_contrib_java", | 10 ":espresso_contrib_java", |
| 11 ":espresso_core_java", | 11 ":espresso_core_java", |
| 12 ":espresso_idling_java", | 12 ":espresso_idling_java", |
| 13 ":espresso_intents_java", | 13 ":espresso_intents_java", |
| 14 ":espresso_web_java", | 14 ":espresso_web_java", |
| 15 ] | 15 ] |
| 16 } | 16 } |
| 17 | 17 |
| 18 android_java_prebuilt("espresso_contrib_java") { | 18 android_java_prebuilt("espresso_contrib_java") { |
| 19 testonly = true | 19 testonly = true |
| 20 jar_path = "lib/espresso-contrib-2.2-release-no-dep.jar" | 20 jar_path = "lib/espresso-contrib-2.2.1-release-no-dep.jar" |
| 21 deps = [ | 21 deps = [ |
| 22 ":espresso_core_java", | 22 ":espresso_core_java", |
| 23 "//third_party/guava:guava_java", | 23 "//third_party/guava:guava_java", |
| 24 "//third_party/hamcrest:hamcrest_core_java", | 24 "//third_party/hamcrest:hamcrest_core_java", |
| 25 ] | 25 ] |
| 26 } | 26 } |
| 27 | 27 |
| 28 android_java_prebuilt("espresso_core_java") { | 28 android_java_prebuilt("espresso_core_java") { |
| 29 testonly = true | 29 testonly = true |
| 30 jar_path = "lib/espresso-core-2.2-release-no-dep.jar" | 30 jar_path = "lib/espresso-core-2.2.1-release-no-dep.jar" |
| 31 deps = [ | 31 deps = [ |
| 32 "//third_party/android_tools:android_support_annotations_java", | 32 "//third_party/android_tools:android_support_annotations_java", |
| 33 "//third_party/guava:guava_java", | 33 "//third_party/guava:guava_java", |
| 34 "//third_party/hamcrest:hamcrest_core_java", | 34 "//third_party/hamcrest:hamcrest_core_java", |
| 35 "//third_party/javax_inject:javax_inject_java", | 35 "//third_party/javax_inject:javax_inject_java", |
| 36 ] | 36 ] |
| 37 } | 37 } |
| 38 | 38 |
| 39 android_java_prebuilt("espresso_idling_java") { | 39 android_java_prebuilt("espresso_idling_java") { |
| 40 testonly = true | 40 testonly = true |
| 41 jar_path = "lib/espresso-idling-resource-2.2-release-no-dep.jar" | 41 jar_path = "lib/espresso-idling-resource-2.2.1-release-no-dep.jar" |
| 42 } | 42 } |
| 43 | 43 |
| 44 android_java_prebuilt("espresso_intents_java") { | 44 android_java_prebuilt("espresso_intents_java") { |
| 45 testonly = true | 45 testonly = true |
| 46 jar_path = "lib/espresso-intents-2.2-release-no-dep.jar" | 46 jar_path = "lib/espresso-intents-2.2.1-release-no-dep.jar" |
| 47 deps = [ | 47 deps = [ |
| 48 "//third_party/android_support_test_runner:runner_java", | 48 "//third_party/android_support_test_runner:runner_java", |
| 49 "//third_party/guava:guava_java", | 49 "//third_party/guava:guava_java", |
| 50 "//third_party/hamcrest:hamcrest_core_java", | 50 "//third_party/hamcrest:hamcrest_core_java", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| 53 | 53 |
| 54 android_java_prebuilt("espresso_web_java") { | 54 android_java_prebuilt("espresso_web_java") { |
| 55 testonly = true | 55 testonly = true |
| 56 jar_path = "lib/espresso-web-2.2-release-no-dep.jar" | 56 jar_path = "lib/espresso-web-2.2.1-release-no-dep.jar" |
| 57 deps = [ | 57 deps = [ |
| 58 ":espresso_core_java", | 58 ":espresso_core_java", |
| 59 "//third_party/guava:guava_java", | 59 "//third_party/guava:guava_java", |
| 60 "//third_party/hamcrest:hamcrest_core_java", | 60 "//third_party/hamcrest:hamcrest_core_java", |
| 61 ] | 61 ] |
| 62 } | 62 } |
| OLD | NEW |