blob: 89b37e075cc419985c3b6170d619c8b369fa50dd [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001#
2# Copyright (C) 2008 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#
18# This file should set PRODUCT_MAKEFILES to a list of product makefiles
19# to expose to the build system. LOCAL_DIR will already be set to
20# the directory containing this file.
21#
22# This file may not rely on the value of any variable other than
23# LOCAL_DIR; do not use any conditionals, and do not look up the
24# value of any variable that isn't set in this file or in a file that
25# it includes.
26#
27
Ying Wang52911302010-05-26 13:13:56 -070028# An unbundled app build needs only generic.mk.
Joe Onorato16fa4b22010-06-09 16:35:58 -070029ifneq ($(TARGET_BUILD_APPS),)
Ying Wang52911302010-05-26 13:13:56 -070030PRODUCT_MAKEFILES := \
31 $(LOCAL_DIR)/core.mk \
32 $(LOCAL_DIR)/generic.mk
33else
The Android Open Source Project88b60792009-03-03 19:28:42 -080034PRODUCT_MAKEFILES := \
Jean-Baptiste Queruc3f42a92010-02-23 09:52:18 -080035 $(LOCAL_DIR)/core.mk \
The Android Open Source Project88b60792009-03-03 19:28:42 -080036 $(LOCAL_DIR)/generic.mk \
Bruce Bearec25e5032010-04-28 14:12:52 -070037 $(LOCAL_DIR)/generic_x86.mk \
Jean-Baptiste Queru2b9b4d02010-03-22 10:55:26 -070038 $(LOCAL_DIR)/full.mk \
Jean-Baptiste Queru6c2df3e2010-07-15 14:04:39 -070039 $(LOCAL_DIR)/full_x86.mk \
The Android Open Source Project88b60792009-03-03 19:28:42 -080040 $(LOCAL_DIR)/sdk.mk \
Jean-Baptiste Queru3a59b2c2009-12-08 15:11:04 -080041 $(LOCAL_DIR)/sim.mk
Ying Wang52911302010-05-26 13:13:56 -070042endif