diff options
author | 2024-09-17 17:49:54 +0000 | |
---|---|---|
committer | 2024-09-17 17:49:54 +0000 | |
commit | 1c8c5698ec8c4fea9abc8aa45ebc27c0520fc173 (patch) | |
tree | 12d51da7db45c8f6645bc6a5e9d60a37d7e5d590 /java/kotlin.go | |
parent | 1531a12d2db069c6b27c3beea1dc3df48d6f8742 (diff) | |
parent | 67136e14f3f29e7067476173674987bd38eb8d3f (diff) |
Merge "Pass the common sources rsp file as `--common_srcs` to extractor" into main
Diffstat (limited to 'java/kotlin.go')
-rw-r--r-- | java/kotlin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/kotlin.go b/java/kotlin.go index 5a76df29d..f42d16304 100644 --- a/java/kotlin.go +++ b/java/kotlin.go @@ -162,7 +162,7 @@ func (j *Module) kotlinCompile(ctx android.ModuleContext, outputFile, headerOutp "srcJarDir": android.PathForModuleOut(ctx, "kotlinc", "srcJars.xref").String(), } if commonSrcsList.Valid() { - args["commonSrcFilesList"] = "--srcs @" + commonSrcsList.String() + args["commonSrcFilesList"] = "--common_srcs @" + commonSrcsList.String() } ctx.Build(pctx, android.BuildParams{ Rule: kotlinKytheExtract, |