The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1 | # |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 2 | # Copyright (C) 2013 The Android Open Source Project |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
| 17 | LOCAL_PATH := $(call my-dir) |
Chris Wren | 2b6c21d | 2013-10-02 14:16:04 -0400 | [diff] [blame] | 18 | |
| 19 | # |
Tony Wickham | 76cce29 | 2018-10-05 15:11:21 -0700 | [diff] [blame] | 20 | # Build rule for plugin lib (needed to write a plugin). |
| 21 | # |
| 22 | include $(CLEAR_VARS) |
| 23 | LOCAL_USE_AAPT2 := true |
| 24 | LOCAL_AAPT2_ONLY := true |
| 25 | LOCAL_MODULE_TAGS := optional |
Hyunyoung Song | a68fba3 | 2019-08-08 00:58:05 -0700 | [diff] [blame] | 26 | LOCAL_STATIC_JAVA_LIBRARIES:= PluginCoreLib |
Tony Wickham | 76cce29 | 2018-10-05 15:11:21 -0700 | [diff] [blame] | 27 | |
| 28 | LOCAL_SRC_FILES := \ |
| 29 | $(call all-java-files-under, src_plugins) |
| 30 | |
| 31 | LOCAL_SDK_VERSION := current |
| 32 | LOCAL_MIN_SDK_VERSION := 28 |
| 33 | LOCAL_MODULE := LauncherPluginLib |
Tony Wickham | 76cce29 | 2018-10-05 15:11:21 -0700 | [diff] [blame] | 34 | |
| 35 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 36 | |
Sunny Goyal | 7313339 | 2017-11-02 11:04:49 -0700 | [diff] [blame] | 37 | # |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 38 | # Build rule for Launcher3 dependencies lib. |
Chris Wren | 2b6c21d | 2013-10-02 14:16:04 -0400 | [diff] [blame] | 39 | # |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 40 | include $(CLEAR_VARS) |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 41 | LOCAL_USE_AAPT2 := true |
| 42 | LOCAL_AAPT2_ONLY := true |
Jean-Baptiste Queru | 2583ac5 | 2010-01-05 11:09:52 -0800 | [diff] [blame] | 43 | LOCAL_MODULE_TAGS := optional |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 44 | |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 45 | LOCAL_STATIC_ANDROID_LIBRARIES := \ |
Sunny Goyal | d230307 | 2018-08-14 15:21:45 -0700 | [diff] [blame] | 46 | androidx.recyclerview_recyclerview \ |
Sunny Goyal | b2498b2 | 2018-10-16 16:36:02 -0700 | [diff] [blame] | 47 | androidx.dynamicanimation_dynamicanimation \ |
Hyunyoung Song | 719eee2 | 2018-11-01 23:12:54 -0700 | [diff] [blame] | 48 | androidx.preference_preference \ |
Sunny Goyal | 202fabf | 2018-11-09 11:13:10 -0800 | [diff] [blame] | 49 | iconloader_base |
Hyunyoung Song | d30e845 | 2015-07-27 18:24:45 -0700 | [diff] [blame] | 50 | |
thiruram | c1c2bfa | 2020-02-04 18:56:40 -0800 | [diff] [blame^] | 51 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 52 | LauncherPluginLib \ |
| 53 | launcher_log_protos_lite |
Tony Wickham | 76cce29 | 2018-10-05 15:11:21 -0700 | [diff] [blame] | 54 | |
Sunny Goyal | d83a67a | 2016-05-23 21:40:53 -0700 | [diff] [blame] | 55 | LOCAL_SRC_FILES := \ |
Sunny Goyal | 2385ebe | 2017-07-19 01:24:07 -0700 | [diff] [blame] | 56 | $(call all-proto-files-under, protos) \ |
Sunny Goyal | 4276e7b | 2018-11-26 23:44:41 -0800 | [diff] [blame] | 57 | $(call all-proto-files-under, proto_overrides) \ |
| 58 | $(call all-java-files-under, src_build_config) \ |
Hyunyoung Song | d30e845 | 2015-07-27 18:24:45 -0700 | [diff] [blame] | 59 | |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 60 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res |
Hyunyoung Song | d30e845 | 2015-07-27 18:24:45 -0700 | [diff] [blame] | 61 | |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 62 | LOCAL_PROGUARD_ENABLED := disabled |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 63 | |
| 64 | LOCAL_PROTOC_OPTIMIZE_TYPE := nano |
Sunny Goyal | 2385ebe | 2017-07-19 01:24:07 -0700 | [diff] [blame] | 65 | LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/ --proto_path=$(LOCAL_PATH)/proto_overrides/ |
Sunny Goyal | 6c46a6d | 2016-11-23 02:24:32 +0530 | [diff] [blame] | 66 | LOCAL_PROTO_JAVA_OUTPUT_PARAMS := enum_style=java |
| 67 | |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 68 | LOCAL_SDK_VERSION := current |
| 69 | LOCAL_MIN_SDK_VERSION := 21 |
| 70 | LOCAL_MODULE := Launcher3CommonDepsLib |
| 71 | LOCAL_PRIVILEGED_MODULE := true |
| 72 | LOCAL_MANIFEST_FILE := AndroidManifest-common.xml |
| 73 | |
| 74 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 75 | |
| 76 | # |
| 77 | # Build rule for Launcher3 app. |
| 78 | # |
| 79 | include $(CLEAR_VARS) |
| 80 | LOCAL_USE_AAPT2 := true |
| 81 | LOCAL_MODULE_TAGS := optional |
| 82 | |
Sunny Goyal | 9c2b960 | 2020-01-07 13:07:55 -0800 | [diff] [blame] | 83 | LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3CommonDepsLib |
| 84 | |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 85 | LOCAL_SRC_FILES := \ |
| 86 | $(call all-java-files-under, src) \ |
Rajeev Kumar | 51ca603 | 2018-10-31 12:54:15 -0700 | [diff] [blame] | 87 | $(call all-java-files-under, src_shortcuts_overrides) \ |
Sunny Goyal | 3e3d759 | 2019-09-11 16:51:50 -0700 | [diff] [blame] | 88 | $(call all-java-files-under, src_ui_overrides) |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 89 | |
| 90 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
Sunny Goyal | 4548a7d | 2018-10-10 10:02:41 -0700 | [diff] [blame] | 91 | # Proguard is disable for testing. Derivarive prjects to keep proguard enabled |
| 92 | LOCAL_PROGUARD_ENABLED := disabled |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 93 | |
Sunny Goyal | 4a6c2c5 | 2015-07-07 11:40:31 -0700 | [diff] [blame] | 94 | LOCAL_SDK_VERSION := current |
Sunny Goyal | d297be2 | 2016-05-10 15:35:02 -0700 | [diff] [blame] | 95 | LOCAL_MIN_SDK_VERSION := 21 |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 96 | LOCAL_PACKAGE_NAME := Launcher3 |
Hyunyoung Song | 3fa9954 | 2016-11-14 10:44:39 -0800 | [diff] [blame] | 97 | LOCAL_PRIVILEGED_MODULE := true |
Jeongik Cha | 6af66b0 | 2019-07-09 10:08:39 +0900 | [diff] [blame] | 98 | LOCAL_SYSTEM_EXT_MODULE := true |
bohu | 8617902 | 2015-05-21 08:20:38 -0700 | [diff] [blame] | 99 | LOCAL_OVERRIDES_PACKAGES := Home Launcher2 |
Anton Hansson | 3e75460 | 2019-02-06 10:26:17 +0000 | [diff] [blame] | 100 | LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3 |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 101 | |
Sunny Goyal | d83a67a | 2016-05-23 21:40:53 -0700 | [diff] [blame] | 102 | LOCAL_FULL_LIBS_MANIFEST_FILES := $(LOCAL_PATH)/AndroidManifest-common.xml |
| 103 | |
Shankhoneer Chakrovarty | 687c345 | 2016-09-14 18:30:05 -0700 | [diff] [blame] | 104 | LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.* |
| 105 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 106 | include $(BUILD_PACKAGE) |
Shih-wei Liao | 163feae | 2010-07-20 01:22:10 -0700 | [diff] [blame] | 107 | |
Chris Wren | 2b6c21d | 2013-10-02 14:16:04 -0400 | [diff] [blame] | 108 | # |
Sunny Goyal | 64a75aa | 2017-07-03 13:50:52 -0700 | [diff] [blame] | 109 | # Build rule for Launcher3 Go app for Android Go devices. |
| 110 | # |
| 111 | include $(CLEAR_VARS) |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 112 | LOCAL_USE_AAPT2 := true |
Sunny Goyal | 64a75aa | 2017-07-03 13:50:52 -0700 | [diff] [blame] | 113 | LOCAL_MODULE_TAGS := optional |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 114 | LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3CommonDepsLib |
Sunny Goyal | 64a75aa | 2017-07-03 13:50:52 -0700 | [diff] [blame] | 115 | |
| 116 | LOCAL_SRC_FILES := \ |
| 117 | $(call all-java-files-under, src) \ |
Sunny Goyal | 8552517 | 2017-11-06 13:00:42 -0800 | [diff] [blame] | 118 | $(call all-java-files-under, src_ui_overrides) \ |
Rajeev Kumar | c00a259 | 2018-10-30 17:16:25 -0700 | [diff] [blame] | 119 | $(call all-java-files-under, go/src) |
Sunny Goyal | 64a75aa | 2017-07-03 13:50:52 -0700 | [diff] [blame] | 120 | |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 121 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/go/res |
Sunny Goyal | 64a75aa | 2017-07-03 13:50:52 -0700 | [diff] [blame] | 122 | |
| 123 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
| 124 | |
Sunny Goyal | 64a75aa | 2017-07-03 13:50:52 -0700 | [diff] [blame] | 125 | LOCAL_SDK_VERSION := current |
| 126 | LOCAL_MIN_SDK_VERSION := 21 |
| 127 | LOCAL_PACKAGE_NAME := Launcher3Go |
| 128 | LOCAL_PRIVILEGED_MODULE := true |
Jeongik Cha | 6af66b0 | 2019-07-09 10:08:39 +0900 | [diff] [blame] | 129 | LOCAL_SYSTEM_EXT_MODULE := true |
Tim Joines | 56ded9c | 2018-06-19 15:02:52 -0700 | [diff] [blame] | 130 | LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3 Launcher3QuickStep |
Anton Hansson | 3e75460 | 2019-02-06 10:26:17 +0000 | [diff] [blame] | 131 | LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3 |
Sunny Goyal | 64a75aa | 2017-07-03 13:50:52 -0700 | [diff] [blame] | 132 | |
| 133 | LOCAL_FULL_LIBS_MANIFEST_FILES := \ |
| 134 | $(LOCAL_PATH)/AndroidManifest.xml \ |
| 135 | $(LOCAL_PATH)/AndroidManifest-common.xml |
| 136 | |
Rajeev Kumar | ff8699e | 2018-03-15 23:48:46 +0000 | [diff] [blame] | 137 | LOCAL_MANIFEST_FILE := go/AndroidManifest.xml |
Sunny Goyal | 64a75aa | 2017-07-03 13:50:52 -0700 | [diff] [blame] | 138 | LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.* |
Sunny Goyal | 64a75aa | 2017-07-03 13:50:52 -0700 | [diff] [blame] | 139 | include $(BUILD_PACKAGE) |
| 140 | |
| 141 | # |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 142 | # Build rule for Quickstep library. |
| 143 | # |
| 144 | include $(CLEAR_VARS) |
| 145 | LOCAL_USE_AAPT2 := true |
| 146 | LOCAL_AAPT2_ONLY := true |
| 147 | LOCAL_MODULE_TAGS := optional |
| 148 | |
thiruram | c1c2bfa | 2020-02-04 18:56:40 -0800 | [diff] [blame^] | 149 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 150 | SystemUISharedLib \ |
| 151 | launcherprotosnano \ |
| 152 | launcher_log_protos_lite |
Hyunyoung Song | 74176d6 | 2018-08-31 10:48:46 -0700 | [diff] [blame] | 153 | ifneq (,$(wildcard frameworks/base)) |
Hyunyoung Song | 74176d6 | 2018-08-31 10:48:46 -0700 | [diff] [blame] | 154 | LOCAL_PRIVATE_PLATFORM_APIS := true |
| 155 | else |
Hyunyoung Song | 74176d6 | 2018-08-31 10:48:46 -0700 | [diff] [blame] | 156 | LOCAL_SDK_VERSION := system_current |
| 157 | LOCAL_MIN_SDK_VERSION := 26 |
| 158 | endif |
| 159 | LOCAL_MODULE := Launcher3QuickStepLib |
| 160 | LOCAL_PRIVILEGED_MODULE := true |
Sunny Goyal | 9c2b960 | 2020-01-07 13:07:55 -0800 | [diff] [blame] | 161 | LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3CommonDepsLib |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 162 | |
| 163 | LOCAL_SRC_FILES := \ |
| 164 | $(call all-java-files-under, src) \ |
| 165 | $(call all-java-files-under, quickstep/src) \ |
Kevin | 2857871 | 2019-01-04 17:54:51 -0800 | [diff] [blame] | 166 | $(call all-java-files-under, quickstep/recents_ui_overrides/src) \ |
Rajeev Kumar | 51ca603 | 2018-10-31 12:54:15 -0700 | [diff] [blame] | 167 | $(call all-java-files-under, src_shortcuts_overrides) |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 168 | |
Kevin | 2857871 | 2019-01-04 17:54:51 -0800 | [diff] [blame] | 169 | LOCAL_RESOURCE_DIR := \ |
| 170 | $(LOCAL_PATH)/quickstep/res \ |
| 171 | $(LOCAL_PATH)/quickstep/recents_ui_overrides/res |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 172 | LOCAL_PROGUARD_ENABLED := disabled |
| 173 | |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 174 | |
| 175 | LOCAL_MANIFEST_FILE := quickstep/AndroidManifest.xml |
| 176 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 177 | |
| 178 | # |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 179 | # Build rule for Quickstep app. |
Chris Wren | 2b6c21d | 2013-10-02 14:16:04 -0400 | [diff] [blame] | 180 | # |
| 181 | include $(CLEAR_VARS) |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 182 | LOCAL_USE_AAPT2 := true |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 183 | LOCAL_MODULE_TAGS := optional |
| 184 | |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 185 | LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3QuickStepLib |
Sunny Goyal | 7313339 | 2017-11-02 11:04:49 -0700 | [diff] [blame] | 186 | LOCAL_PROGUARD_ENABLED := disabled |
Chris Wren | 2b6c21d | 2013-10-02 14:16:04 -0400 | [diff] [blame] | 187 | |
Hyunyoung Song | 74176d6 | 2018-08-31 10:48:46 -0700 | [diff] [blame] | 188 | ifneq (,$(wildcard frameworks/base)) |
| 189 | LOCAL_PRIVATE_PLATFORM_APIS := true |
| 190 | else |
| 191 | LOCAL_SDK_VERSION := system_current |
| 192 | LOCAL_MIN_SDK_VERSION := 26 |
| 193 | endif |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 194 | LOCAL_PACKAGE_NAME := Launcher3QuickStep |
| 195 | LOCAL_PRIVILEGED_MODULE := true |
Jeongik Cha | 6af66b0 | 2019-07-09 10:08:39 +0900 | [diff] [blame] | 196 | LOCAL_SYSTEM_EXT_MODULE := true |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 197 | LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3 |
Hyunyoung Song | 896a715 | 2019-03-21 14:06:02 -0700 | [diff] [blame] | 198 | LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3 |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 199 | |
Kevin | 2857871 | 2019-01-04 17:54:51 -0800 | [diff] [blame] | 200 | LOCAL_RESOURCE_DIR := \ |
| 201 | $(LOCAL_PATH)/quickstep/res \ |
| 202 | $(LOCAL_PATH)/quickstep/recents_ui_overrides/res |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 203 | |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 204 | LOCAL_FULL_LIBS_MANIFEST_FILES := \ |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 205 | $(LOCAL_PATH)/quickstep/AndroidManifest-launcher.xml \ |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 206 | $(LOCAL_PATH)/AndroidManifest-common.xml |
| 207 | |
| 208 | LOCAL_MANIFEST_FILE := quickstep/AndroidManifest.xml |
Sunny Goyal | 9d34196 | 2017-10-30 10:03:34 -0700 | [diff] [blame] | 209 | LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.* |
| 210 | |
| 211 | include $(BUILD_PACKAGE) |
| 212 | |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 213 | |
Sunny Goyal | c551927 | 2018-05-24 12:44:26 -0700 | [diff] [blame] | 214 | # |
| 215 | # Build rule for Launcher3 Go app with quickstep for Android Go devices. |
| 216 | # |
| 217 | include $(CLEAR_VARS) |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 218 | LOCAL_USE_AAPT2 := true |
Sunny Goyal | c551927 | 2018-05-24 12:44:26 -0700 | [diff] [blame] | 219 | LOCAL_MODULE_TAGS := optional |
| 220 | |
thiruram | c1c2bfa | 2020-02-04 18:56:40 -0800 | [diff] [blame^] | 221 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 222 | SystemUISharedLib \ |
| 223 | launcherprotosnano \ |
| 224 | launcher_log_protos_lite |
Hyunyoung Song | 74176d6 | 2018-08-31 10:48:46 -0700 | [diff] [blame] | 225 | ifneq (,$(wildcard frameworks/base)) |
Hyunyoung Song | 74176d6 | 2018-08-31 10:48:46 -0700 | [diff] [blame] | 226 | LOCAL_PRIVATE_PLATFORM_APIS := true |
| 227 | else |
Hyunyoung Song | 74176d6 | 2018-08-31 10:48:46 -0700 | [diff] [blame] | 228 | LOCAL_SDK_VERSION := system_current |
| 229 | LOCAL_MIN_SDK_VERSION := 26 |
| 230 | endif |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 231 | LOCAL_STATIC_ANDROID_LIBRARIES := Launcher3CommonDepsLib |
Sunny Goyal | c551927 | 2018-05-24 12:44:26 -0700 | [diff] [blame] | 232 | |
| 233 | LOCAL_SRC_FILES := \ |
| 234 | $(call all-java-files-under, src) \ |
| 235 | $(call all-java-files-under, quickstep/src) \ |
Kevin | 2857871 | 2019-01-04 17:54:51 -0800 | [diff] [blame] | 236 | $(call all-java-files-under, quickstep/recents_ui_overrides/src) \ |
Rajeev Kumar | c00a259 | 2018-10-30 17:16:25 -0700 | [diff] [blame] | 237 | $(call all-java-files-under, go/src) |
Sunny Goyal | c551927 | 2018-05-24 12:44:26 -0700 | [diff] [blame] | 238 | |
| 239 | LOCAL_RESOURCE_DIR := \ |
| 240 | $(LOCAL_PATH)/quickstep/res \ |
Kevin | 2857871 | 2019-01-04 17:54:51 -0800 | [diff] [blame] | 241 | $(LOCAL_PATH)/quickstep/recents_ui_overrides/res \ |
Sunny Goyal | 9fc9797 | 2018-06-18 01:12:37 -0700 | [diff] [blame] | 242 | $(LOCAL_PATH)/go/res |
Sunny Goyal | c551927 | 2018-05-24 12:44:26 -0700 | [diff] [blame] | 243 | |
Rajeev Kumar | dedecd8 | 2018-08-06 14:32:26 -0700 | [diff] [blame] | 244 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
Rajeev Kumar | 02c33da | 2018-07-31 12:44:09 -0700 | [diff] [blame] | 245 | LOCAL_PROGUARD_ENABLED := full |
Sunny Goyal | c551927 | 2018-05-24 12:44:26 -0700 | [diff] [blame] | 246 | |
Sunny Goyal | c551927 | 2018-05-24 12:44:26 -0700 | [diff] [blame] | 247 | LOCAL_PACKAGE_NAME := Launcher3QuickStepGo |
| 248 | LOCAL_PRIVILEGED_MODULE := true |
Jeongik Cha | 6af66b0 | 2019-07-09 10:08:39 +0900 | [diff] [blame] | 249 | LOCAL_SYSTEM_EXT_MODULE := true |
Peter Kalauskas | 0842cf5 | 2019-12-11 11:06:50 -0800 | [diff] [blame] | 250 | LOCAL_OVERRIDES_PACKAGES := Home Launcher2 Launcher3 Launcher3QuickStep |
Anton Hansson | 3e75460 | 2019-02-06 10:26:17 +0000 | [diff] [blame] | 251 | LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.launcher3 |
Kevin | 2857871 | 2019-01-04 17:54:51 -0800 | [diff] [blame] | 252 | |
| 253 | LOCAL_FULL_LIBS_MANIFEST_FILES := \ |
| 254 | $(LOCAL_PATH)/go/AndroidManifest.xml \ |
Sunny Goyal | 210e174 | 2019-10-17 12:05:38 -0700 | [diff] [blame] | 255 | $(LOCAL_PATH)/quickstep/AndroidManifest-launcher.xml \ |
Kevin | 2857871 | 2019-01-04 17:54:51 -0800 | [diff] [blame] | 256 | $(LOCAL_PATH)/AndroidManifest-common.xml |
| 257 | |
| 258 | LOCAL_MANIFEST_FILE := quickstep/AndroidManifest.xml |
| 259 | LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.launcher3.* |
| 260 | include $(BUILD_PACKAGE) |
| 261 | |
Chris Wren | ba2923a | 2013-12-10 15:48:47 -0500 | [diff] [blame] | 262 | |
Sunny Goyal | d68725c | 2015-03-13 10:26:27 -0700 | [diff] [blame] | 263 | # ================================================== |
| 264 | include $(call all-makefiles-under,$(LOCAL_PATH)) |