2009-03-04 03:32:27 +00:00
|
|
|
#
|
2013-06-06 02:57:57 +00:00
|
|
|
# Copyright (C) 2013 The Android Open Source Project
|
2009-03-04 03:32:27 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
2013-10-02 18:16:04 +00:00
|
|
|
|
|
|
|
#
|
2018-06-18 08:12:37 +00:00
|
|
|
# Build rule for Launcher3 dependencies lib.
|
2013-10-02 18:16:04 +00:00
|
|
|
#
|
2009-03-04 03:32:27 +00:00
|
|
|
include $(CLEAR_VARS)
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_USE_AAPT2 := true
|
|
|
|
LOCAL_AAPT2_ONLY := true
|
2010-01-05 19:09:52 +00:00
|
|
|
LOCAL_MODULE_TAGS := optional
|
2009-03-04 03:32:27 +00:00
|
|
|
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := \
|
2018-08-14 22:21:45 +00:00
|
|
|
androidx.recyclerview_recyclerview \
|
2018-10-16 23:36:02 +00:00
|
|
|
androidx.dynamicanimation_dynamicanimation \
|
2018-11-02 06:12:54 +00:00
|
|
|
androidx.preference_preference \
|
2018-11-09 19:13:10 +00:00
|
|
|
iconloader_base
|
2015-07-28 01:24:45 +00:00
|
|
|
|
2020-02-05 02:56:40 +00:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
|
|
LauncherPluginLib \
|
2020-04-15 16:52:19 +00:00
|
|
|
launcher_log_protos_lite
|
2018-10-05 22:11:21 +00:00
|
|
|
|
2016-05-24 04:40:53 +00:00
|
|
|
LOCAL_SRC_FILES := \
|
2017-07-19 08:24:07 +00:00
|
|
|
$(call all-proto-files-under, protos) \
|
2018-11-27 07:44:41 +00:00
|
|
|
$(call all-proto-files-under, proto_overrides) \
|
|
|
|
$(call all-java-files-under, src_build_config) \
|
2015-07-28 01:24:45 +00:00
|
|
|
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
|
2015-07-28 01:24:45 +00:00
|
|
|
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
2013-09-13 22:01:38 +00:00
|
|
|
|
|
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
2017-07-19 08:24:07 +00:00
|
|
|
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/ --proto_path=$(LOCAL_PATH)/proto_overrides/
|
2016-11-22 20:54:32 +00:00
|
|
|
LOCAL_PROTO_JAVA_OUTPUT_PARAMS := enum_style=java
|
|
|
|
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_SDK_VERSION := current
|
|
|
|
LOCAL_MIN_SDK_VERSION := 21
|
|
|
|
LOCAL_MODULE := Launcher3CommonDepsLib
|
|
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
|
|
LOCAL_MANIFEST_FILE := AndroidManifest-common.xml
|
|
|
|
|
|
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Build rule for Launcher3 app.
|
|
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_USE_AAPT2 := true
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
|
2020-01-07 21:07:55 +00:00
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3CommonDepsLib
|
|
|
|
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
$(call all-java-files-under, src) \
|
2018-10-31 19:54:15 +00:00
|
|
|
$(call all-java-files-under, src_shortcuts_overrides) \
|
2020-06-11 01:40:58 +00:00
|
|
|
$(call all-java-files-under, src_ui_overrides) \
|
|
|
|
$(call all-java-files-under, ext_tests/src)
|
|
|
|
|
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/ext_tests/res
|
2018-06-18 08:12:37 +00:00
|
|
|
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
2018-10-10 17:02:41 +00:00
|
|
|
# Proguard is disable for testing. Derivarive prjects to keep proguard enabled
|
|
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
2013-09-13 22:01:38 +00:00
|
|
|
|
2015-07-07 18:40:31 +00:00
|
|
|
LOCAL_SDK_VERSION := current
|
2016-05-10 22:35:02 +00:00
|
|
|
LOCAL_MIN_SDK_VERSION := 21
|
2013-06-06 02:57:57 +00:00
|
|
|
LOCAL_PACKAGE_NAME := Launcher3
|
2016-11-14 18:44:39 +00:00
|
|
|
LOCAL_PRIVILEGED_MODULE := true
|
2019-07-09 01:08:39 +00:00
|
|
|
LOCAL_SYSTEM_EXT_MODULE := true
|
2015-05-21 15:20:38 +00:00
|
|
|
LOCAL_OVERRIDES_PACKAGES := Home Launcher2
|
2019-02-06 10:26:17 +00:00
|
|
|
LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3
|
2009-03-04 03:32:27 +00:00
|
|
|
|
2016-05-24 04:40:53 +00:00
|
|
|
LOCAL_FULL_LIBS_MANIFEST_FILES := $(LOCAL_PATH)/AndroidManifest-common.xml
|
|
|
|
|
2016-09-15 01:30:05 +00:00
|
|
|
LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.*
|
|
|
|
|
2009-03-04 03:32:27 +00:00
|
|
|
include $(BUILD_PACKAGE)
|
2010-07-20 08:22:10 +00:00
|
|
|
|
2017-07-03 20:50:52 +00:00
|
|
|
#
|
|
|
|
# Build rule for Launcher3 Go app for Android Go devices.
|
|
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_USE_AAPT2 := true
|
2017-07-03 20:50:52 +00:00
|
|
|
LOCAL_MODULE_TAGS := optional
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3CommonDepsLib
|
2017-07-03 20:50:52 +00:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
$(call all-java-files-under, src) \
|
2017-11-06 21:00:42 +00:00
|
|
|
$(call all-java-files-under, src_ui_overrides) \
|
2018-10-31 00:16:25 +00:00
|
|
|
$(call all-java-files-under, go/src)
|
2017-07-03 20:50:52 +00:00
|
|
|
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/go/res
|
2017-07-03 20:50:52 +00:00
|
|
|
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
|
|
|
|
LOCAL_SDK_VERSION := current
|
|
|
|
LOCAL_MIN_SDK_VERSION := 21
|
|
|
|
LOCAL_PACKAGE_NAME := Launcher3Go
|
|
|
|
LOCAL_PRIVILEGED_MODULE := true
|
2019-07-09 01:08:39 +00:00
|
|
|
LOCAL_SYSTEM_EXT_MODULE := true
|
2018-06-19 22:02:52 +00:00
|
|
|
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3 Launcher3QuickStep
|
2019-02-06 10:26:17 +00:00
|
|
|
LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3
|
2017-07-03 20:50:52 +00:00
|
|
|
|
|
|
|
LOCAL_FULL_LIBS_MANIFEST_FILES := \
|
|
|
|
$(LOCAL_PATH)/AndroidManifest.xml \
|
|
|
|
$(LOCAL_PATH)/AndroidManifest-common.xml
|
|
|
|
|
2018-03-15 23:48:46 +00:00
|
|
|
LOCAL_MANIFEST_FILE := go/AndroidManifest.xml
|
2017-07-03 20:50:52 +00:00
|
|
|
LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.*
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
|
2013-10-02 18:16:04 +00:00
|
|
|
#
|
2018-06-18 08:12:37 +00:00
|
|
|
# Build rule for Quickstep library.
|
2013-10-02 18:16:04 +00:00
|
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_USE_AAPT2 := true
|
|
|
|
LOCAL_AAPT2_ONLY := true
|
2017-10-30 17:03:34 +00:00
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
|
2020-02-05 02:56:40 +00:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
2020-04-27 08:12:01 +00:00
|
|
|
SystemUI-statsd \
|
2020-02-05 02:56:40 +00:00
|
|
|
SystemUISharedLib \
|
|
|
|
launcherprotosnano \
|
|
|
|
launcher_log_protos_lite
|
2018-08-31 17:48:46 +00:00
|
|
|
ifneq (,$(wildcard frameworks/base))
|
|
|
|
LOCAL_PRIVATE_PLATFORM_APIS := true
|
|
|
|
else
|
|
|
|
LOCAL_SDK_VERSION := system_current
|
|
|
|
LOCAL_MIN_SDK_VERSION := 26
|
|
|
|
endif
|
|
|
|
LOCAL_MODULE := Launcher3QuickStepLib
|
|
|
|
LOCAL_PRIVILEGED_MODULE := true
|
2020-01-07 21:07:55 +00:00
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3CommonDepsLib
|
2017-10-30 17:03:34 +00:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
$(call all-java-files-under, src) \
|
|
|
|
$(call all-java-files-under, quickstep/src) \
|
2019-01-05 01:54:51 +00:00
|
|
|
$(call all-java-files-under, quickstep/recents_ui_overrides/src) \
|
2018-10-31 19:54:15 +00:00
|
|
|
$(call all-java-files-under, src_shortcuts_overrides)
|
2017-10-30 17:03:34 +00:00
|
|
|
|
2019-01-05 01:54:51 +00:00
|
|
|
LOCAL_RESOURCE_DIR := \
|
|
|
|
$(LOCAL_PATH)/quickstep/res \
|
|
|
|
$(LOCAL_PATH)/quickstep/recents_ui_overrides/res
|
2017-11-02 18:04:49 +00:00
|
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
2013-10-02 18:16:04 +00:00
|
|
|
|
|
|
|
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_MANIFEST_FILE := quickstep/AndroidManifest.xml
|
|
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Build rule for Quickstep app.
|
|
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_USE_AAPT2 := true
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
|
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3QuickStepLib
|
|
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
2017-10-30 17:03:34 +00:00
|
|
|
|
2018-08-31 17:48:46 +00:00
|
|
|
ifneq (,$(wildcard frameworks/base))
|
|
|
|
LOCAL_PRIVATE_PLATFORM_APIS := true
|
|
|
|
else
|
|
|
|
LOCAL_SDK_VERSION := system_current
|
|
|
|
LOCAL_MIN_SDK_VERSION := 26
|
|
|
|
endif
|
2017-10-30 17:03:34 +00:00
|
|
|
LOCAL_PACKAGE_NAME := Launcher3QuickStep
|
|
|
|
LOCAL_PRIVILEGED_MODULE := true
|
2019-07-09 01:08:39 +00:00
|
|
|
LOCAL_SYSTEM_EXT_MODULE := true
|
2017-10-30 17:03:34 +00:00
|
|
|
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3
|
2019-03-21 21:06:02 +00:00
|
|
|
LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3
|
2017-10-30 17:03:34 +00:00
|
|
|
|
2019-01-05 01:54:51 +00:00
|
|
|
LOCAL_RESOURCE_DIR := \
|
|
|
|
$(LOCAL_PATH)/quickstep/res \
|
|
|
|
$(LOCAL_PATH)/quickstep/recents_ui_overrides/res
|
2018-06-18 08:12:37 +00:00
|
|
|
|
2017-10-30 17:03:34 +00:00
|
|
|
LOCAL_FULL_LIBS_MANIFEST_FILES := \
|
2019-10-17 19:05:38 +00:00
|
|
|
$(LOCAL_PATH)/quickstep/AndroidManifest-launcher.xml \
|
2017-10-30 17:03:34 +00:00
|
|
|
$(LOCAL_PATH)/AndroidManifest-common.xml
|
|
|
|
|
|
|
|
LOCAL_MANIFEST_FILE := quickstep/AndroidManifest.xml
|
|
|
|
LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.*
|
|
|
|
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
|
2018-06-18 08:12:37 +00:00
|
|
|
|
2018-05-24 19:44:26 +00:00
|
|
|
#
|
|
|
|
# Build rule for Launcher3 Go app with quickstep for Android Go devices.
|
|
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_USE_AAPT2 := true
|
2018-05-24 19:44:26 +00:00
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
|
2020-02-05 02:56:40 +00:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
2020-04-27 08:12:01 +00:00
|
|
|
SystemUI-statsd \
|
2020-02-05 02:56:40 +00:00
|
|
|
SystemUISharedLib \
|
|
|
|
launcherprotosnano \
|
|
|
|
launcher_log_protos_lite
|
2018-08-31 17:48:46 +00:00
|
|
|
ifneq (,$(wildcard frameworks/base))
|
|
|
|
LOCAL_PRIVATE_PLATFORM_APIS := true
|
|
|
|
else
|
|
|
|
LOCAL_SDK_VERSION := system_current
|
|
|
|
LOCAL_MIN_SDK_VERSION := 26
|
|
|
|
endif
|
2018-06-18 08:12:37 +00:00
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3CommonDepsLib
|
2018-05-24 19:44:26 +00:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
$(call all-java-files-under, src) \
|
|
|
|
$(call all-java-files-under, quickstep/src) \
|
2019-01-05 01:54:51 +00:00
|
|
|
$(call all-java-files-under, quickstep/recents_ui_overrides/src) \
|
2018-10-31 00:16:25 +00:00
|
|
|
$(call all-java-files-under, go/src)
|
2018-05-24 19:44:26 +00:00
|
|
|
|
|
|
|
LOCAL_RESOURCE_DIR := \
|
|
|
|
$(LOCAL_PATH)/quickstep/res \
|
2019-01-05 01:54:51 +00:00
|
|
|
$(LOCAL_PATH)/quickstep/recents_ui_overrides/res \
|
2018-06-18 08:12:37 +00:00
|
|
|
$(LOCAL_PATH)/go/res
|
2017-10-30 17:03:34 +00:00
|
|
|
|
2018-08-06 21:32:26 +00:00
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
2018-07-31 19:44:09 +00:00
|
|
|
LOCAL_PROGUARD_ENABLED := full
|
2018-05-24 19:44:26 +00:00
|
|
|
|
|
|
|
LOCAL_PACKAGE_NAME := Launcher3QuickStepGo
|
|
|
|
LOCAL_PRIVILEGED_MODULE := true
|
2019-07-09 01:08:39 +00:00
|
|
|
LOCAL_SYSTEM_EXT_MODULE := true
|
2019-12-11 19:06:50 +00:00
|
|
|
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3 Launcher3QuickStep
|
2019-02-06 10:26:17 +00:00
|
|
|
LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3
|
2019-01-05 01:54:51 +00:00
|
|
|
|
|
|
|
LOCAL_FULL_LIBS_MANIFEST_FILES := \
|
|
|
|
$(LOCAL_PATH)/go/AndroidManifest.xml \
|
2019-10-17 19:05:38 +00:00
|
|
|
$(LOCAL_PATH)/quickstep/AndroidManifest-launcher.xml \
|
2019-01-05 01:54:51 +00:00
|
|
|
$(LOCAL_PATH)/AndroidManifest-common.xml
|
|
|
|
|
|
|
|
LOCAL_MANIFEST_FILE := quickstep/AndroidManifest.xml
|
|
|
|
LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.*
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
|
2013-12-10 20:48:47 +00:00
|
|
|
|
2015-03-13 17:26:27 +00:00
|
|
|
# ==================================================
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|