base.mk revision afcf77f54b57dd4babea1357ae40d78cc27c8430
1#
2# Copyright (C) 2012 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
17# Base modules (will move elsewhere, previously user tagged)
18PRODUCT_PACKAGES += \
19    20-dns.conf \
20    95-configured \
21    org.apache.http.legacy.boot \
22    appwidget \
23    appops \
24    am \
25    android.policy \
26    android.test.runner \
27    app_process \
28    applypatch \
29    audioserver \
30    blkid \
31    bmgr \
32    bugreport \
33    content \
34    dhcpcd \
35    dhcpcd-run-hooks \
36    dnsmasq \
37    dpm \
38    framework \
39    fsck_msdos \
40    hid \
41    ime \
42    input \
43    input.evdev.default \
44    inputflinger \
45    inputflingerhost \
46    javax.obex \
47    libandroid \
48    libandroid_runtime \
49    libandroid_servers \
50    libaudioeffect_jni \
51    libaudioflinger \
52    libaudiopolicyservice \
53    libaudiopolicymanager \
54    libbundlewrapper \
55    libcamera_client \
56    libcameraservice \
57    libdl \
58    libdrmclearkeyplugin \
59    libeffectproxy \
60    libeffects \
61    libinput \
62    libinputflinger \
63    libinputflingerhost \
64    libiprouteutil \
65    libjnigraphics \
66    libldnhncr \
67    libmedia \
68    libmedia_jni \
69    libmediaplayerservice \
70    libmtp \
71    libnetd_client \
72    libnetlink \
73    libnetutils \
74    libpdfium \
75    libradio \
76    libradioservice \
77    libradio_metadata \
78    libreference-ril \
79    libreverbwrapper \
80    libril \
81    librtp_jni \
82    libsensorservice \
83    libskia \
84    libsonic \
85    libsonivox \
86    libsoundpool \
87    libsoundtrigger \
88    libsoundtriggerservice \
89    libsqlite \
90    libstagefright \
91    libstagefright_amrnb_common \
92    libstagefright_avc_common \
93    libstagefright_enc_common \
94    libstagefright_foundation \
95    libstagefright_omx \
96    libstagefright_yuv \
97    libusbhost \
98    libutils \
99    libvisualizer \
100    libvorbisidec \
101    libmediandk \
102    libwifi-service \
103    media \
104    media_cmd \
105    mediaserver \
106    mediaextractor \
107    monkey \
108    mtpd \
109    ndc \
110    netd \
111    ping \
112    ping6 \
113    platform.xml \
114    pppd \
115    pm \
116    racoon \
117    run-as \
118    schedtest \
119    sdcard \
120    secdiscard \
121    services \
122    settings \
123    sgdisk \
124    sm \
125    svc \
126    tc \
127    telecom \
128    vdc \
129    vold \
130    wm
131
132
133PRODUCT_COPY_FILES := $(call add-to-product-copy-files-if-exists,\
134    frameworks/base/preloaded-classes:system/etc/preloaded-classes)
135
136# Note: it is acceptable to not have a compiled-classes file. In that case, all boot classpath
137#       classes will be compiled.
138PRODUCT_COPY_FILES += $(call add-to-product-copy-files-if-exists,\
139    frameworks/base/compiled-classes:system/etc/compiled-classes)
140
141
142$(call inherit-product, $(SRC_TARGET_DIR)/product/embedded.mk)
143