blob: ac5525fcc241cac2cfa8bf3c18cfd2d1cc2deb31 [file] [log] [blame]
Daniel Nishi09fa1382016-05-31 15:20:42 -07001# Copyright (C) 2016 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
15LOCAL_PATH := $(call my-dir)
16
17include $(CLEAR_VARS)
18
19LOCAL_PACKAGE_NAME := StorageManager
Anton Hansson9baa92a2018-02-22 16:12:34 +000020LOCAL_PRIVATE_PLATFORM_APIS := true
Daniel Nishi09fa1382016-05-31 15:20:42 -070021LOCAL_MODULE_TAGS := optional
22LOCAL_PROGUARD_FLAG_FILES := proguard.cfg
23
Jeongik Chac0e588a2019-11-25 20:26:58 +090024LOCAL_SYSTEM_EXT_MODULE := true
Daniel Nishi09fa1382016-05-31 15:20:42 -070025LOCAL_PRIVILEGED_MODULE := true
Anton Hanssonf8610642019-01-11 15:05:58 +000026LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.storagemanager
Daniel Nishi09fa1382016-05-31 15:20:42 -070027
Alan Viverettefcf899e2017-04-26 15:55:53 -040028LOCAL_STATIC_ANDROID_LIBRARIES := \
Daniel Nishic8243c12018-07-11 16:44:05 -070029 androidx.legacy_legacy-preference-v14 \
30 androidx.appcompat_appcompat \
31 androidx.preference_preference \
32 androidx.recyclerview_recyclerview
Daniel Nishi09fa1382016-05-31 15:20:42 -070033
Alan Viverettefcf899e2017-04-26 15:55:53 -040034LOCAL_USE_AAPT2 := true
Daniel Nishi09fa1382016-05-31 15:20:42 -070035
Alan Viverettefcf899e2017-04-26 15:55:53 -040036LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
Daniel Nishi09fa1382016-05-31 15:20:42 -070037
38LOCAL_SRC_FILES := \
39 $(call all-java-files-under, src)
40
41include frameworks/base/packages/SettingsLib/common.mk
42
43include $(BUILD_PACKAGE)
Daniel Nishi86af5212016-06-08 16:29:40 -070044
45# Use the following include to make our test apk.
46ifeq (,$(ONE_SHOT_MAKEFILE))
47include $(call all-makefiles-under,$(LOCAL_PATH))
Anton Hanssonf8610642019-01-11 15:05:58 +000048endif