2009-03-04 11:32:27 +08:00
|
|
|
#
|
2013-06-06 10:57:57 +08:00
|
|
|
# Copyright (C) 2013 The Android Open Source Project
|
2009-03-04 11:32:27 +08: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-03 02:16:04 +08:00
|
|
|
|
2017-07-04 04:50:52 +08:00
|
|
|
#
|
|
|
|
# Build rule for Launcher3 Go app for Android Go devices.
|
|
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
2018-06-18 16:12:37 +08:00
|
|
|
LOCAL_USE_AAPT2 := true
|
2017-07-04 04:50:52 +08:00
|
|
|
LOCAL_MODULE_TAGS := optional
|
2018-06-18 16:12:37 +08:00
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3CommonDepsLib
|
2017-07-04 04:50:52 +08:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
$(call all-java-files-under, src) \
|
2017-11-07 05:00:42 +08:00
|
|
|
$(call all-java-files-under, src_ui_overrides) \
|
2018-10-31 08:16:25 +08:00
|
|
|
$(call all-java-files-under, go/src)
|
2017-07-04 04:50:52 +08:00
|
|
|
|
2018-06-18 16:12:37 +08:00
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/go/res
|
2017-07-04 04:50:52 +08:00
|
|
|
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
|
|
|
|
LOCAL_SDK_VERSION := current
|
2020-07-30 07:54:20 +08:00
|
|
|
LOCAL_MIN_SDK_VERSION := 26
|
2017-07-04 04:50:52 +08:00
|
|
|
LOCAL_PACKAGE_NAME := Launcher3Go
|
|
|
|
LOCAL_PRIVILEGED_MODULE := true
|
2019-07-09 09:08:39 +08:00
|
|
|
LOCAL_SYSTEM_EXT_MODULE := true
|
2018-06-20 06:02:52 +08:00
|
|
|
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3 Launcher3QuickStep
|
2019-02-06 18:26:17 +08:00
|
|
|
LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3
|
2017-07-04 04:50:52 +08:00
|
|
|
|
|
|
|
LOCAL_FULL_LIBS_MANIFEST_FILES := \
|
|
|
|
$(LOCAL_PATH)/AndroidManifest.xml \
|
|
|
|
$(LOCAL_PATH)/AndroidManifest-common.xml
|
|
|
|
|
2018-03-16 07:48:46 +08:00
|
|
|
LOCAL_MANIFEST_FILE := go/AndroidManifest.xml
|
2017-07-04 04:50:52 +08:00
|
|
|
LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.*
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
|
2013-10-03 02:16:04 +08:00
|
|
|
#
|
2018-06-18 16:12:37 +08:00
|
|
|
# Build rule for Quickstep library.
|
2013-10-03 02:16:04 +08:00
|
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
2018-06-18 16:12:37 +08:00
|
|
|
LOCAL_USE_AAPT2 := true
|
|
|
|
LOCAL_AAPT2_ONLY := true
|
2017-10-31 01:03:34 +08:00
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
|
2020-02-05 10:56:40 +08:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
2020-04-27 16:12:01 +08:00
|
|
|
SystemUI-statsd \
|
2021-01-28 06:45:58 +08:00
|
|
|
SystemUISharedLib
|
2018-09-01 01:48:46 +08: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
|
2021-02-13 09:08:17 +08:00
|
|
|
LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
|
|
|
|
LOCAL_LICENSE_CONDITIONS := notice
|
|
|
|
LOCAL_NOTICE_FILE := $(LOCAL_PATH)/NOTICE
|
2018-09-01 01:48:46 +08:00
|
|
|
LOCAL_PRIVILEGED_MODULE := true
|
2020-01-08 05:07:55 +08:00
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3CommonDepsLib
|
2017-10-31 01:03:34 +08:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
$(call all-java-files-under, src) \
|
|
|
|
$(call all-java-files-under, quickstep/src) \
|
2018-11-01 03:54:15 +08:00
|
|
|
$(call all-java-files-under, src_shortcuts_overrides)
|
2017-10-31 01:03:34 +08:00
|
|
|
|
2021-04-03 01:58:57 +08:00
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/quickstep/res
|
2017-11-03 02:04:49 +08:00
|
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
2013-10-03 02:16:04 +08:00
|
|
|
|
|
|
|
|
2018-06-18 16:12:37 +08: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-31 01:03:34 +08:00
|
|
|
|
2018-09-01 01:48:46 +08:00
|
|
|
ifneq (,$(wildcard frameworks/base))
|
|
|
|
LOCAL_PRIVATE_PLATFORM_APIS := true
|
|
|
|
else
|
|
|
|
LOCAL_SDK_VERSION := system_current
|
|
|
|
LOCAL_MIN_SDK_VERSION := 26
|
|
|
|
endif
|
2017-10-31 01:03:34 +08:00
|
|
|
LOCAL_PACKAGE_NAME := Launcher3QuickStep
|
|
|
|
LOCAL_PRIVILEGED_MODULE := true
|
2019-07-09 09:08:39 +08:00
|
|
|
LOCAL_SYSTEM_EXT_MODULE := true
|
2017-10-31 01:03:34 +08:00
|
|
|
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3
|
2019-03-22 05:06:02 +08:00
|
|
|
LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3
|
2017-10-31 01:03:34 +08:00
|
|
|
|
2021-04-03 01:58:57 +08:00
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/quickstep/res
|
2018-06-18 16:12:37 +08:00
|
|
|
|
2017-10-31 01:03:34 +08:00
|
|
|
LOCAL_FULL_LIBS_MANIFEST_FILES := \
|
2019-10-18 03:05:38 +08:00
|
|
|
$(LOCAL_PATH)/quickstep/AndroidManifest-launcher.xml \
|
2017-10-31 01:03:34 +08: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 16:12:37 +08:00
|
|
|
|
2018-05-25 03:44:26 +08:00
|
|
|
#
|
|
|
|
# Build rule for Launcher3 Go app with quickstep for Android Go devices.
|
|
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
2018-06-18 16:12:37 +08:00
|
|
|
LOCAL_USE_AAPT2 := true
|
2018-05-25 03:44:26 +08:00
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
|
2020-02-05 10:56:40 +08:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
2020-04-27 16:12:01 +08:00
|
|
|
SystemUI-statsd \
|
2021-01-28 06:45:58 +08:00
|
|
|
SystemUISharedLib
|
2018-09-01 01:48:46 +08: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 16:12:37 +08:00
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3CommonDepsLib
|
2018-05-25 03:44:26 +08:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
$(call all-java-files-under, src) \
|
|
|
|
$(call all-java-files-under, quickstep/src) \
|
2020-11-25 12:24:47 +08:00
|
|
|
$(call all-java-files-under, go/src) \
|
|
|
|
$(call all-java-files-under, go/quickstep/src)
|
2018-05-25 03:44:26 +08:00
|
|
|
|
|
|
|
LOCAL_RESOURCE_DIR := \
|
2021-01-12 09:20:00 +08:00
|
|
|
$(LOCAL_PATH)/go/quickstep/res \
|
2021-04-03 01:58:57 +08:00
|
|
|
$(LOCAL_PATH)/go/res \
|
|
|
|
$(LOCAL_PATH)/quickstep/res
|
2017-10-31 01:03:34 +08:00
|
|
|
|
2018-08-07 05:32:26 +08:00
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
2018-08-01 03:44:09 +08:00
|
|
|
LOCAL_PROGUARD_ENABLED := full
|
2018-05-25 03:44:26 +08:00
|
|
|
|
|
|
|
LOCAL_PACKAGE_NAME := Launcher3QuickStepGo
|
|
|
|
LOCAL_PRIVILEGED_MODULE := true
|
2019-07-09 09:08:39 +08:00
|
|
|
LOCAL_SYSTEM_EXT_MODULE := true
|
2019-12-12 03:06:50 +08:00
|
|
|
LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3 Launcher3QuickStep
|
2019-02-06 18:26:17 +08:00
|
|
|
LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3
|
2019-01-05 09:54:51 +08:00
|
|
|
|
|
|
|
LOCAL_FULL_LIBS_MANIFEST_FILES := \
|
|
|
|
$(LOCAL_PATH)/go/AndroidManifest.xml \
|
2020-11-25 12:24:47 +08:00
|
|
|
$(LOCAL_PATH)/go/AndroidManifest-launcher.xml \
|
2019-01-05 09:54:51 +08: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-11 04:48:47 +08:00
|
|
|
|
2015-03-14 01:26:27 +08:00
|
|
|
# ==================================================
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|