blob: 35e202e8bbe359fb5e316f56199d5cc69051cfe3 [file] [log] [blame]
Jean-Baptiste Queruc3f42a92010-02-23 09:52:18 -08001#
2# Copyright (C) 2007 The Android Open Source Project
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
Doug Zongker3f964942013-02-15 14:01:03 -080017# Base configuration for communication-oriented android devices
Stephen Hinesbdac04e2014-11-05 13:19:56 -080018# (phones, tablets, etc.). If you want a change to apply to ALMOST ALL
Doug Zongker3f964942013-02-15 14:01:03 -080019# devices (including non-phones and non-tablets), modify
Stephen Hinesbdac04e2014-11-05 13:19:56 -080020# core_minimal.mk instead. If you care about wearables, you need to modify
21# core_tiny.mk in addition to core_minimal.mk.
Jean-Baptiste Queruc3f42a92010-02-23 09:52:18 -080022
Joe Onorato3445f8f2012-05-22 12:20:27 -070023PRODUCT_PACKAGES += \
Daniel Sandlereeed3cf2012-08-31 08:22:22 -040024 BasicDreams \
Makoto Onuki00003c32016-01-12 16:15:59 -080025 BlockedNumberProvider \
Paul Miller4271a9b2015-07-30 18:12:21 -070026 BookmarkProvider \
27 Browser2 \
Philip P. Moltmannfa064b32017-02-27 14:55:35 -080028 BuiltInPrintService \
Ying Wang2cebe0b2013-11-20 15:18:02 -080029 Calendar \
30 CalendarProvider \
Paul Jensend42ae842014-07-09 21:49:12 -040031 CaptivePortalLogin \
Ying Wang2cebe0b2013-11-20 15:18:02 -080032 CertInstaller \
Ying Wang24cad7d2011-07-29 13:32:11 -070033 Contacts \
Ying Wang2cebe0b2013-11-20 15:18:02 -080034 DeskClock \
Jeff Sharkey68043582013-07-16 13:00:13 -070035 DocumentsUI \
Justin Koh066375a2013-10-02 14:32:15 -070036 DownloadProviderUi \
Ying Wang2cebe0b2013-11-20 15:18:02 -080037 Email \
Justin Klaassen45249ff2015-08-13 19:13:46 +000038 ExactCalculator \
Jeff Sharkey68043582013-07-16 13:00:13 -070039 ExternalStorageProvider \
Ying Wang2cebe0b2013-11-20 15:18:02 -080040 FusedLocation \
41 InputDevices \
Ying Wang603755d2011-07-29 14:25:59 -070042 KeyChain \
Ying Wang2cebe0b2013-11-20 15:18:02 -080043 Keyguard \
44 LatinIME \
Sunny Goyalc65540b2017-10-31 09:24:18 -070045 Launcher3 \
Nicolas Prevotc1b25362014-02-25 10:04:12 +000046 ManagedProvisioning \
Daichi Hirono90bf4372015-11-18 13:00:40 +090047 MtpDocumentsProvider \
Jason Monk5cdc0a92013-08-19 15:42:32 -040048 PacProcessor \
Ying Wangc564b692014-04-24 17:12:58 -070049 libpac \
Ying Wang2cebe0b2013-11-20 15:18:02 -080050 PrintSpooler \
Philip P. Moltmann85ec6292016-03-14 15:02:57 -070051 PrintRecommendationService \
Jason Monkb5e2c292013-07-16 10:26:09 -040052 ProxyHandler \
Ying Wang2cebe0b2013-11-20 15:18:02 -080053 QuickSearchBox \
54 Settings \
Fan Zhang11de0ee2017-08-14 17:18:51 -070055 SettingsIntelligence \
Christopher Tate6e2ba522011-09-22 18:24:30 -070056 SharedStorageBackup \
goneil3f6ad602018-01-30 11:36:11 -080057 SimAppDialog \
Daniel Nishi936cc2a2016-06-10 13:14:57 -070058 StorageManager \
Tyler Gunn6156bca2014-09-12 09:19:59 -070059 Telecom \
Ying Wang2cebe0b2013-11-20 15:18:02 -080060 TeleService \
Carmen Jackson34342812018-01-24 18:38:20 -080061 Traceur \
Ye Wene77676c2014-05-15 13:06:50 -070062 VpnDialogs \
Karthik Ravi Shankar35aed3d2017-03-27 19:55:53 -070063 vr \
Ye Wene77676c2014-05-15 13:06:50 -070064 MmsService
Kenny Root2244cd32012-10-10 11:01:02 -070065
Nicolas Geoffray7d32b8b2017-03-22 12:36:05 +000066# The set of packages whose code can be loaded by the system server.
67PRODUCT_SYSTEM_SERVER_APPS += \
68 FusedLocation \
69 InputDevices \
70 KeyChain \
71 Telecom \
72
Nicolas Geoffray4a0ad4a2017-06-12 15:19:16 +010073# The set of packages we want to force 'speed' compilation on.
74PRODUCT_DEXPREOPT_SPEED_APPS += \
75
Stuart Scottc95e83d2013-08-01 14:31:54 -070076$(call inherit-product, $(SRC_TARGET_DIR)/product/core_base.mk)