xref: /aosp_15_r20/external/bazelbuild-kotlin-rules/kotlin/rules.bzl (revision 3a22c0a33dd99bcca39a024d43e6fbcc55c2806e)
1*3a22c0a3SAlix# Copyright 2022 Google LLC. All rights reserved.
2*3a22c0a3SAlix#
3*3a22c0a3SAlix# Licensed under the Apache License, Version 2.0 (the License);
4*3a22c0a3SAlix# you may not use this file except in compliance with the License.
5*3a22c0a3SAlix# You may obtain a copy of the License at
6*3a22c0a3SAlix#
7*3a22c0a3SAlix#     http://www.apache.org/licenses/LICENSE-2.0
8*3a22c0a3SAlix#
9*3a22c0a3SAlix# Unless required by applicable law or agreed to in writing, software
10*3a22c0a3SAlix# distributed under the License is distributed on an "AS IS" BASIS,
11*3a22c0a3SAlix# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12*3a22c0a3SAlix# See the License for the specific language governing permissions and
13*3a22c0a3SAlix# limitations under the License.
14*3a22c0a3SAlix
15*3a22c0a3SAlix"""Kotlin rules."""
16*3a22c0a3SAlix
17*3a22c0a3SAlix# go/keep-sorted start
18*3a22c0a3SAlixload("//kotlin:compiler_opt.bzl", _kt_compiler_opt = "kt_compiler_opt")
19*3a22c0a3SAlixload("//kotlin:compiler_plugin_export.bzl", _kt_compiler_plugin_export = "kt_compiler_plugin_export")
20*3a22c0a3SAlixload("//kotlin:jvm_import.bzl", _kt_jvm_import = "kt_jvm_import")
21*3a22c0a3SAlixload("//kotlin:jvm_library.bzl", _kt_jvm_library = "kt_jvm_library")
22*3a22c0a3SAlixload("//kotlin:jvm_test.bzl", _kt_jvm_test = "kt_jvm_test")
23*3a22c0a3SAlix# go/keep-sorted end
24*3a22c0a3SAlix
25*3a22c0a3SAlix# go/keep-sorted start
26*3a22c0a3SAlixkt_compiler_opt = _kt_compiler_opt
27*3a22c0a3SAlixkt_compiler_plugin_export = _kt_compiler_plugin_export
28*3a22c0a3SAlixkt_jvm_import = _kt_jvm_import
29*3a22c0a3SAlixkt_jvm_library = _kt_jvm_library
30*3a22c0a3SAlixkt_jvm_test = _kt_jvm_test
31*3a22c0a3SAlix# go/keep-sorted end
32