blob: fbdb14b2663d0bcdaa17b3a18d1cd23f179ff7bd [file] [log] [blame]
Akshay Kannancdb6c142016-01-20 18:25:44 -08001# 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
James Lemieux395f79d2017-12-13 14:41:05 -080015LOCAL_PATH := $(call my-dir)
16
Akshay Kannancdb6c142016-01-20 18:25:44 -080017include $(CLEAR_VARS)
18
James Lemieux395f79d2017-12-13 14:41:05 -080019LOCAL_PACKAGE_NAME := EmergencyInfo
Anton Hanssoned60dfc2018-02-22 16:11:50 +000020LOCAL_PRIVATE_PLATFORM_APIS := true
Akshay Kannancdb6c142016-01-20 18:25:44 -080021LOCAL_MODULE_TAGS := eng
James Lemieux395f79d2017-12-13 14:41:05 -080022LOCAL_PROGUARD_FLAG_FILES := proguard.flags
23
24LOCAL_PRIVILEGED_MODULE := true
25
Alan Viverette4f8bc2d2017-04-26 16:09:04 -040026LOCAL_STATIC_ANDROID_LIBRARIES := \
27 android-support-v14-preference \
mariagpuyolaee23782016-02-16 13:29:49 -080028 android-support-v13 \
29 android-support-v7-appcompat \
Colin Cross6b50ee32017-01-06 12:02:35 -080030 android-support-v7-preference \
31 android-support-v7-recyclerview \
32 android-support-v4 \
Alan Viverette01bc5602018-02-01 15:52:28 -050033 $(ANDROID_SUPPORT_DESIGN_TARGETS) \
Colin Cross6b50ee32017-01-06 12:02:35 -080034 android-support-transition
Akshay Kannancdb6c142016-01-20 18:25:44 -080035
Alan Viverette4f8bc2d2017-04-26 16:09:04 -040036LOCAL_USE_AAPT2 := true
Akshay Kannancdb6c142016-01-20 18:25:44 -080037
James Lemieux395f79d2017-12-13 14:41:05 -080038LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
39
40LOCAL_SRC_FILES := $(call all-java-files-under, src)
41
Akshay Kannancdb6c142016-01-20 18:25:44 -080042LOCAL_CERTIFICATE := platform
Juan Lang9ea75a42017-04-27 15:29:43 -070043
Juan Lang2c0518a2017-05-10 17:00:32 -070044include frameworks/base/packages/SettingsLib/common.mk
45
Akshay Kannancdb6c142016-01-20 18:25:44 -080046include $(BUILD_PACKAGE)
mariagpuyol91095782016-03-24 17:52:28 -070047
Anton Hanssoned60dfc2018-02-22 16:11:50 +000048include $(call first-makefiles-under, $(LOCAL_PATH))