diff options
author | 2019-01-18 15:05:09 -0800 | |
---|---|---|
committer | 2019-01-22 16:32:11 +0000 | |
commit | 21fc9bbe198caf9736bb9dc0f5701e8bfd56de40 (patch) | |
tree | e946fd278efb789be91debe6b037c3009a59a9b3 /java/java.go | |
parent | f8c06c159e8ba3fa7afdc263d72f91cbd50a9e36 (diff) |
Move kotlin to it's own file
kapt is going to make kotlin a little more complicated, move the
rules and tests to their own files.
Bug: 122251693
Test: m checkbuild
Change-Id: Ieed78b97995ced210b710bd50c357514cc8e3bc6
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java.go b/java/java.go index 7e82c59d6..d2710a805 100644 --- a/java/java.go +++ b/java/java.go @@ -974,7 +974,7 @@ func (j *Module) compile(ctx android.ModuleContext, extraSrcJars ...android.Path flags.kotlincClasspath = append(flags.kotlincClasspath, deps.classpath...) kotlinJar := android.PathForModuleOut(ctx, "kotlin", jarName) - TransformKotlinToClasses(ctx, kotlinJar, kotlinSrcFiles, srcJars, flags) + kotlinCompile(ctx, kotlinJar, kotlinSrcFiles, srcJars, flags) if ctx.Failed() { return } |