blob: dfb3a55b0966cb12403076347879331849db5d91 [file] [log] [blame]
Jordan Demeulenaere359df6f2022-08-02 10:32:27 +02001// Copyright (C) 2022 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package {
Aditya Choudharyb4262272024-01-31 11:09:29 +000016 default_team: "trendy_team_system_ui_please_use_a_more_specific_subteam_if_possible_",
Jordan Demeulenaere359df6f2022-08-02 10:32:27 +020017 // See: http://go/android-license-faq
18 // A large-scale-change added 'default_applicable_licenses' to import
19 // all of the 'license_kinds' from "frameworks_base_packages_SystemUI_license"
20 // to get the below license kinds:
21 // SPDX-license-identifier-Apache-2.0
22 default_applicable_licenses: ["frameworks_base_packages_SystemUI_license"],
23}
24
25android_library {
26 name: "SystemUIComposeFeatures",
Peter Kalauskas84c5a992023-08-23 13:39:23 -070027 use_resource_processor: true,
Jordan Demeulenaere359df6f2022-08-02 10:32:27 +020028 manifest: "AndroidManifest.xml",
29
30 srcs: [
31 "src/**/*.kt",
32 ],
33
34 static_libs: [
Jordan Demeulenaere66d123f2022-07-21 15:22:07 +020035 "SystemUI-core",
Jordan Demeulenaere8a1747d2022-12-28 11:11:42 +010036 "PlatformComposeCore",
Jordan Demeulenaere6d5bea52023-10-12 14:12:00 +020037 "PlatformComposeSceneTransitionLayout",
Jordan Demeulenaere359df6f2022-08-02 10:32:27 +020038
39 "androidx.compose.runtime_runtime",
Mike Schneider38928d32023-06-26 14:55:57 +020040 "androidx.compose.animation_animation-graphics",
Jordan Demeulenaere359df6f2022-08-02 10:32:27 +020041 "androidx.compose.material3_material3",
Coco Duan68a5f422024-01-04 07:56:13 +000042 "androidx.compose.material_material-icons-extended",
Jordan Demeulenaerebf43b1d2022-12-16 13:00:23 +010043 "androidx.activity_activity-compose",
Jordan Demeulenaere359df6f2022-08-02 10:32:27 +020044 ],
45
46 kotlincflags: ["-Xjvm-default=all"],
Zi Wange8d2a302024-02-26 18:24:35 -080047 skip_jarjar_repackage: true,
Jordan Demeulenaere359df6f2022-08-02 10:32:27 +020048}