Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bencodes committed Oct 16, 2023
1 parent 09afdc4 commit f085dae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kotlin/internal/jvm/jvm.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -234,19 +234,19 @@ _common_attr = utils.add_dicts(
"_experimental_prune_transitive_deps": attr.label(
doc = """If enabled, compilation is performed against only direct dependencies.
Transitive deps required for compilation must be explicitly added""",
default = ":experimental_prune_transitive_deps",
default = Label("//kotlin/settings:experimental_prune_transitive_deps"),
),
"_experimental_exclude_assocate_compile_jars_from_associates": attr.label(
doc = """If enabled the compile jars will be removed from the associates preventing unintended internal
dependencies from being leaked into dependent modules.
""",
default = ":experimental_exclude_assocate_compile_jars_from_associates",
default = Label("//kotlin/internal/jvm:experimental_exclude_assocate_compile_jars_from_associates"),
),
"_experimental_compile_against_associate_runtime_jar": attr.label(
doc = """If enabled Kotlin targets will compile against the full runtime output jar of
associated targets instead of their ABI jars.
""",
default = ":experimental_compile_against_associate_runtime_jar",
default = Label("//kotlin/internal/jvm:experimental_compile_against_associate_runtime_jar"),
),
"_use_auto_exec_groups": attr.bool(default = False),
},
Expand Down

0 comments on commit f085dae

Please sign in to comment.