summaryrefslogtreecommitdiffstats
path: root/Android.bp
diff options
context:
space:
mode:
authorEric Holk <eholk@google.com>2018-08-28 10:11:26 -0700
committerEric Holk <eholk@google.com>2018-08-28 10:23:24 -0700
commit81bc02837005944eba673df893ee04ce6286a412 (patch)
tree426b6209e99b72da9cb79c8ff8c1cb44e7a2db0f /Android.bp
parent4eb509a6b75651d1df5ef377c55d444b5e8569da (diff)
downloadplatform_external_kotlinc-81bc02837005944eba673df893ee04ce6286a412.tar.gz
platform_external_kotlinc-81bc02837005944eba673df893ee04ce6286a412.tar.bz2
platform_external_kotlinc-81bc02837005944eba673df893ee04ce6286a412.zip
Add kotlin-test targetmaster-cuttlefish-testing-release
This is needed for Kotlin programs to be able to run tests. Change-Id: I43e64440d69d8a5905b50ebe627bca101a71a31f
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index ce95b12..814c93c 100644
--- a/Android.bp
+++ b/Android.bp
@@ -11,3 +11,13 @@ java_import {
jars: ["lib/kotlin-stdlib.jar"],
sdk_version: "core_current",
}
+
+java_import {
+ name: "kotlin-test",
+ host_supported: true,
+ jars: [
+ "lib/kotlin-test.jar",
+ "lib/kotlin-test-junit.jar",
+ ],
+ sdk_version: "core_current",
+}