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 android_java_prebuilt("runner_java") { | 7 android_java_prebuilt("runner_java") { |
8 jar_path = "lib/runner-0.3-release-no-dep.jar" | 8 jar_path = "lib/runner-0.5-release-no-dep.jar" |
the real yoland
2016/08/03 23:05:09
I don't think I was able to find 0.5 here
aluo
2016/08/05 22:00:16
Done. I uploaded these to the bucket
the real yoland
2016/08/05 22:16:57
Got it, in that case, you want to also add the cha
mikecase (-- gone --)
2016/08/19 20:36:21
Yeah, still need to update sha1 hash
Add file...
| |
9 deps = [ | 9 deps = [ |
10 ":exposed_instrumentation_api_publish_java", | |
11 ":junit_java", | |
10 "//third_party/guava:guava_java", | 12 "//third_party/guava:guava_java", |
11 ] | 13 ] |
12 } | 14 } |
15 | |
16 android_java_prebuilt("exposed_instrumentation_api_publish_java") { | |
17 jar_path = "lib/exposed-instrumentation-api-publish-0.5-no-dep.jar" | |
18 } | |
19 | |
20 android_java_prebuilt("junit_java") { | |
the real yoland
2016/08/03 23:05:09
+mikecase is adding junit4.12 to //third_party/jun
aluo
2016/08/05 22:00:16
I'll wait for junit to be updated and modify this.
mikecase (-- gone --)
2016/08/19 20:36:21
junit 4.12 should be available now via //third_par
| |
21 jar_path = "lib/junit-4.12-release-no-dep.jar" | |
22 } | |
OLD | NEW |