Skip to content

Commit 90ff07b

Browse files
authored
Use non-ABI jars for kotlin compilation. (#41)
* Use non-ABI jars for kotlin compilation. Adds two new kotlin_compile attributes: 1. verbose: for printing debugging info 2. args: for passing arbitrary args to compilation Adds new test from @jmmk re: tornadofx * Exclude jars if basename starts with "kotlin-" Slightly less naive attempt at excluding kotlin stdlib jars. * Remove jar name exclusion * Update readme for 0.5.0 Drop support for bazel < 0.7.0 (now uses JavaInfo provider)
1 parent 9cd88b7 commit 90ff07b

File tree

6 files changed

+117
-27
lines changed

6 files changed

+117
-27
lines changed

.travis.yml

-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ os:
1010
env:
1111
#- V=HEAD
1212
- V=0.7.0
13-
- V=0.6.1
14-
- V=0.5.4
15-
- V=0.5.0
16-
- V=0.4.5
1713

1814
before_install:
1915
- OS=linux

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Build [Kotlin][kotlin] source with with [Bazel][bazel].
1919
| [`kotlin_android_library`](#kotlin_android_library) | Build an android library from kotlin source |
2020
| [`kotlin_test`](#kotlin_test) | Run a kotlin test |
2121

22-
> Note: **Bazel 0.4.5 or higher is required**.
22+
> Note: **Bazel 0.7.0 or higher is required for rules_kotlin 0.5.0**.
2323
2424
## Workspace rules
2525

@@ -29,7 +29,7 @@ Add the following to your `WORKSPACE` file:
2929
git_repository(
3030
name = "org_pubref_rules_kotlin",
3131
remote = "https://github.com/pubref/rules_kotlin.git",
32-
tag = "v0.4.1", # update as needed
32+
tag = "v0.5.0", # update as needed
3333
)
3434

3535
load("@org_pubref_rules_kotlin//kotlin:rules.bzl", "kotlin_repositories")

kotlin/rules.bzl

+47-21
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,19 @@ def _kotlin_compile_impl(ctx):
3232
# preloader
3333
inputs += ctx.files._kotlin_home
3434

35+
args += ctx.attr.args
36+
3537
# Make classpath if needed. Include those from this and dependent rules.
36-
jars = []
38+
jars = depset()
3739

38-
# Populate from (transitive) java dependencies
40+
# Populate from (transitive) java dependencies.
3941
for dep in ctx.attr.java_deps:
4042
# Add-in all source and generated jar files
41-
for file in dep.files:
42-
jars.append(file)
43-
# Add-in transitive dependencies
44-
for file in dep.java.transitive_deps:
45-
jars.append(file)
46-
43+
if java_common.provider in dep:
44+
info = dep[java_common.provider]
45+
# Don't use the ABI jars!
46+
jars += info.full_compile_jars
47+
4748
# Populate from (transitive) kotlin dependencies
4849
for dep in ctx.attr.deps:
4950
jars += [file for file in dep.kt.transitive_jars]
@@ -53,11 +54,9 @@ def _kotlin_compile_impl(ctx):
5354
# The fileset object is either a ConfiguredTarget OR a depset.
5455
files = getattr(fileset, 'files', None)
5556
if files:
56-
for file in files:
57-
jars += [file]
57+
jars = jars.union(files)
5858
else:
59-
for file in fileset:
60-
jars += [file]
59+
jars = jars.union(fileset)
6160

6261
# Populate from android dependencies
6362
for dep in ctx.attr.android_deps:
@@ -66,15 +65,21 @@ def _kotlin_compile_impl(ctx):
6665

6766
if jars:
6867
# De-duplicate
69-
jarsetlist = depset(jars).to_list()
70-
args += ["-cp", ":".join([file.path for file in jarsetlist])]
71-
inputs += jarsetlist
72-
68+
jarlist = depset(jars).to_list()
69+
args += ["-cp", ":".join([f.path for f in jarlist])]
70+
inputs += jarlist
71+
if ctx.attr.verbose:
72+
print("kotlin compile classpath: \n" + "\n".join([file.path for file in jarlist]))
73+
7374
# Add in filepaths
7475
for file in ctx.files.srcs:
7576
inputs += [file]
7677
args += [file.path]
7778

79+
80+
if ctx.attr.verbose > 1:
81+
print("kotlin compile arguments: \n%s" % "\n".join(args))
82+
7883
# Run the compiler
7984
ctx.action(
8085
mnemonic = "KotlinCompile",
@@ -92,7 +97,7 @@ def _kotlin_compile_impl(ctx):
9297
kt = struct(
9398
srcs = ctx.attr.srcs,
9499
jar = kt_jar,
95-
transitive_jars = [kt_jar] + jars,
100+
transitive_jars = [kt_jar] + jars.to_list(),
96101
),
97102
)
98103

@@ -121,6 +126,11 @@ _kotlin_compile_attrs = {
121126
providers = ["java"],
122127
),
123128

129+
# Add debugging info for the rule
130+
"verbose": attr.int(
131+
default = 0,
132+
),
133+
124134
# Dependent android rules.
125135
"android_deps": attr.label_list(
126136
providers = ["android"],
@@ -140,6 +150,9 @@ _kotlin_compile_attrs = {
140150
# Advanced options
141151
"x_opts": attr.string_list(),
142152

153+
# Other args
154+
"args": attr.string_list(),
155+
143156
# Plugin options
144157
"plugin_opts": attr.string_dict(),
145158

@@ -281,6 +294,8 @@ def kotlin_binary(name,
281294
x_opts = [],
282295
plugin_opts = {},
283296
java_deps = [],
297+
compile_args = [],
298+
verbose = None,
284299
visibility = None,
285300
**kwargs):
286301

@@ -291,16 +306,27 @@ def kotlin_binary(name,
291306
srcs = srcs,
292307
deps = deps,
293308
x_opts = x_opts,
309+
args = compile_args,
294310
plugin_opts = plugin_opts,
295311
visibility = visibility,
312+
verbose = verbose,
296313
)
297314

315+
runtime_deps = [name + "_kt.jar"] + java_deps + [
316+
dep + "_kt"
317+
for dep in deps
318+
] + ["@com_github_jetbrains_kotlin//:runtime"]
319+
320+
if len(jars):
321+
native.java_import(
322+
name = name + "_jars",
323+
jars = jars,
324+
)
325+
runtime_deps += [name + "_jars"]
326+
298327
native.java_binary(
299328
name = name,
300-
runtime_deps = [name + "_kt.jar"] + java_deps + [
301-
dep + "_kt"
302-
for dep in deps
303-
] + ["@com_github_jetbrains_kotlin//:runtime"],
329+
runtime_deps = runtime_deps,
304330
visibility = visibility,
305331
**kwargs
306332
)

tests/tornadofx/App.kt

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import tornadofx.App
2+
import tornadofx.View
3+
import tornadofx.launch
4+
import tornadofx.vbox
5+
6+
class MyView: View() {
7+
override val root = vbox()
8+
}
9+
10+
class MyApp: App(MyView::class)
11+
12+
fun main(args: Array<String>) = launch<MyApp>(args)

tests/tornadofx/BUILD

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
load("@org_pubref_rules_kotlin//kotlin:rules.bzl", "kotlin_binary")
2+
3+
kotlin_binary(
4+
name = "main",
5+
main_class = "AppKt",
6+
srcs = ["App.kt"],
7+
verbose = 2,
8+
compile_args = [
9+
"-jvm-target", "1.8",
10+
],
11+
java_deps = [
12+
"@tornadofx//:compile",
13+
],
14+
)

tests/tornadofx/WORKSPACE

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
local_repository(
2+
name = 'org_pubref_rules_kotlin',
3+
path = '../..',
4+
)
5+
6+
load('@org_pubref_rules_kotlin//kotlin:rules.bzl', 'kotlin_repositories')
7+
8+
kotlin_repositories()
9+
10+
git_repository(
11+
name = 'org_pubref_rules_maven',
12+
remote = 'https://github.com/pubref/rules_maven',
13+
commit = '9c3b07a6d9b195a1192aea3cd78afd1f66c80710',
14+
)
15+
16+
load('@org_pubref_rules_maven//maven:rules.bzl', 'maven_repositories')
17+
maven_repositories()
18+
19+
load('@org_pubref_rules_maven//maven:rules.bzl', 'maven_repository')
20+
21+
maven_repository(
22+
name = 'tornadofx',
23+
deps = [
24+
'no.tornado:tornadofx:1.7.12',
25+
],
26+
omit = [
27+
'919f0dfe192fb4e063e7dacadee7f8bb9a2672a9:org.jetbrains:annotations:13.0',
28+
'222365b4b684bfe35a7676c5ff69b4b414e398fa:org.jetbrains.kotlin:kotlin-reflect:1.1.51',
29+
'e34fe80c9714240525f665113dd3749415515655:org.jetbrains.kotlin:kotlin-stdlib:1.1.51',
30+
'8b5933578dc55f32cfc1a25f1db6371e4161fb8f:org.jetbrains.kotlin:kotlin-stdlib-jre7:1.1.51',
31+
'cc8e639ff087472268912159cd66c01f2765c657:org.jetbrains.kotlin:kotlin-stdlib-jre8:1.1.51',
32+
],
33+
transitive_deps = [
34+
'b55f582add177fe166c9b375c6074eca7cee8642:no.tornado:tornadofx:1.7.12',
35+
'3178f73569fd7a1e5ffc464e680f7a8cc784b85a:org.glassfish:javax.json:1.0.4',
36+
],
37+
)
38+
39+
load('@tornadofx//:rules.bzl', 'tornadofx_compile')
40+
41+
tornadofx_compile()
42+

0 commit comments

Comments
 (0)