| // Copyright (C) 2018 The Android Open Source Project |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| package { |
| default_applicable_licenses: ["packages_apps_Launcher3_license"], |
| } |
| |
| // Added automatically by a large-scale-change |
| // See: http://go/android-license-faq |
| license { |
| name: "packages_apps_Launcher3_license", |
| visibility: [":__subpackages__"], |
| license_kinds: [ |
| "SPDX-license-identifier-Apache-2.0", |
| ], |
| license_text: [ |
| "NOTICE", |
| ], |
| } |
| |
| android_library { |
| name: "launcher-aosp-tapl", |
| static_libs: [ |
| "androidx.annotation_annotation", |
| "androidx.test.runner", |
| "androidx.test.rules", |
| "androidx.test.uiautomator_uiautomator", |
| "androidx.preference_preference", |
| "SystemUISharedLib", |
| ], |
| srcs: [ |
| "tests/tapl/**/*.java", |
| "src/com/android/launcher3/ResourceUtils.java", |
| "src/com/android/launcher3/testing/TestProtocol.java", |
| ], |
| manifest: "tests/tapl/AndroidManifest.xml", |
| platform_apis: true, |
| } |
| |
| java_library_static { |
| name: "launcher_log_protos_lite", |
| srcs: [ |
| "protos/*.proto", |
| "protos_overrides/*.proto", |
| ], |
| sdk_version: "current", |
| proto: { |
| type: "lite", |
| local_include_dirs:[ |
| "protos", |
| "protos_overrides", |
| ], |
| }, |
| static_libs: ["libprotobuf-java-lite"], |
| } |
| |
| java_library_static { |
| name: "launcher_quickstep_log_protos_lite", |
| srcs: [ |
| "quickstep/protos_overrides/*.proto", |
| ], |
| sdk_version: "current", |
| proto: { |
| type: "lite", |
| local_include_dirs:[ |
| "quickstep/protos_overrides", |
| ], |
| }, |
| static_libs: [ |
| "libprotobuf-java-lite", |
| "launcher_log_protos_lite" |
| ], |
| } |
| |
| java_library { |
| name: "LauncherPluginLib", |
| |
| static_libs: ["PluginCoreLib"], |
| |
| srcs: ["src_plugins/**/*.java"], |
| |
| sdk_version: "current", |
| min_sdk_version: "28", |
| } |
| |
| // |
| // Build rule for Launcher3 dependencies lib. |
| // |
| android_library { |
| name: "Launcher3CommonDepsLib", |
| static_libs: [ |
| "androidx.recyclerview_recyclerview", |
| "androidx.dynamicanimation_dynamicanimation", |
| "androidx.preference_preference", |
| "androidx.slice_slice-view", |
| "iconloader_base", |
| "LauncherPluginLib", |
| "launcher_quickstep_log_protos_lite" |
| ], |
| srcs: [ |
| "src_build_config/**/*.java", |
| ], |
| resource_dirs: ["res"], |
| optimize: { |
| enabled: false, |
| }, |
| sdk_version: "current", |
| min_sdk_version: "26", |
| manifest: "AndroidManifest-common.xml", |
| } |
| |
| // |
| // Build rule for Launcher3 app. |
| // |
| android_app { |
| name: "Launcher3", |
| |
| static_libs: [ |
| "Launcher3CommonDepsLib", |
| ], |
| srcs: [ |
| "src/**/*.java", |
| "src_shortcuts_overrides/**/*.java", |
| "src_ui_overrides/**/*.java", |
| "ext_tests/src/**/*.java", |
| ], |
| resource_dirs: [ |
| "ext_tests/res", |
| ], |
| optimize: { |
| proguard_flags_files: ["proguard.flags"], |
| // Proguard is disable for testing. Derivarive prjects to keep proguard enabled |
| enabled: false, |
| }, |
| |
| sdk_version: "current", |
| min_sdk_version: "26", |
| target_sdk_version: "29", |
| privileged: true, |
| system_ext_specific: true, |
| |
| overrides: [ |
| "Home", |
| "Launcher2", |
| ], |
| required: ["privapp_whitelist_com.android.launcher3"], |
| |
| jacoco: { |
| include_filter: ["com.android.launcher3.**"], |
| }, |
| additional_manifests: [ |
| "AndroidManifest-common.xml", |
| ], |
| } |
| |
| // |
| // Launcher Robolectric test target. |
| // |
| java_library { |
| name: "Launcher3TestCommon", |
| libs: [ |
| "Launcher3CommonDepsLib", |
| ], |
| srcs: [ |
| "src/**/*.java", |
| "src_shortcuts_overrides/**/*.java", |
| "src_ui_overrides/**/*.java", |
| "ext_tests/src/**/*.java", |
| "tests/src_common/**/*.java", |
| ], |
| target_sdk_version: "29", |
| sdk_version: "current", |
| min_sdk_version: "26", |
| } |