xref: /aosp_15_r20/prebuilts/sdk/current/androidx/JavaPlugins.bp (revision 344a7f5ef16c479e7a7f54ee6567a9d112f9e72b)
1*344a7f5eSAndroid Build Coastguard Worker//
2*344a7f5eSAndroid Build Coastguard Worker// Copyright (C) 2019 The Android Open Source Project
3*344a7f5eSAndroid Build Coastguard Worker//
4*344a7f5eSAndroid Build Coastguard Worker// Licensed under the Apache License, Version 2.0 (the "License");
5*344a7f5eSAndroid Build Coastguard Worker// you may not use this file except in compliance with the License.
6*344a7f5eSAndroid Build Coastguard Worker// You may obtain a copy of the License at
7*344a7f5eSAndroid Build Coastguard Worker//
8*344a7f5eSAndroid Build Coastguard Worker//      http://www.apache.org/licenses/LICENSE-2.0
9*344a7f5eSAndroid Build Coastguard Worker//
10*344a7f5eSAndroid Build Coastguard Worker// Unless required by applicable law or agreed to in writing, software
11*344a7f5eSAndroid Build Coastguard Worker// distributed under the License is distributed on an "AS IS" BASIS,
12*344a7f5eSAndroid Build Coastguard Worker// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*344a7f5eSAndroid Build Coastguard Worker// See the License for the specific language governing permissions and
14*344a7f5eSAndroid Build Coastguard Worker// limitations under the License.
15*344a7f5eSAndroid Build Coastguard Worker
16*344a7f5eSAndroid Build Coastguard Workerjava_plugin {
17*344a7f5eSAndroid Build Coastguard Worker    name: "androidx.appsearch_appsearch-compiler-plugin",
18*344a7f5eSAndroid Build Coastguard Worker    static_libs: ["androidx.appsearch_appsearch-compiler"],
19*344a7f5eSAndroid Build Coastguard Worker    processor_class: "androidx.appsearch.compiler.AppSearchCompiler",
20*344a7f5eSAndroid Build Coastguard Worker}
21*344a7f5eSAndroid Build Coastguard Worker
22*344a7f5eSAndroid Build Coastguard Workerjava_plugin {
23*344a7f5eSAndroid Build Coastguard Worker    name: "androidx.room_room-compiler-plugin",
24*344a7f5eSAndroid Build Coastguard Worker    static_libs: [
25*344a7f5eSAndroid Build Coastguard Worker        "androidx.room_room-compiler",
26*344a7f5eSAndroid Build Coastguard Worker        "kotlin-reflect"
27*344a7f5eSAndroid Build Coastguard Worker    ],
28*344a7f5eSAndroid Build Coastguard Worker    processor_class: "androidx.room.RoomProcessor",
29*344a7f5eSAndroid Build Coastguard Worker    generates_api: true,
30*344a7f5eSAndroid Build Coastguard Worker}
31*344a7f5eSAndroid Build Coastguard Worker
32*344a7f5eSAndroid Build Coastguard Workerkotlin_plugin {
33*344a7f5eSAndroid Build Coastguard Worker    name: "androidx.compose.compiler_compiler-hosted-plugin",
34*344a7f5eSAndroid Build Coastguard Worker    static_libs: [
35*344a7f5eSAndroid Build Coastguard Worker        "androidx.compose.compiler_compiler-hosted",
36*344a7f5eSAndroid Build Coastguard Worker    ],
37*344a7f5eSAndroid Build Coastguard Worker}
38