Android.mk revision 58c8dd2aa9a8931a53923054679fb31fecc696c9
1# Copyright (C) 2008 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
17# libutils is a little unique: It's built twice, once for the host
18# and once for the device.
19
20commonSources:= \
21	Asset.cpp \
22	AssetDir.cpp \
23	AssetManager.cpp \
24	BlobCache.cpp \
25	BufferedTextOutput.cpp \
26	CallStack.cpp \
27	Debug.cpp \
28	FileMap.cpp \
29	Flattenable.cpp \
30	ObbFile.cpp \
31	Pool.cpp \
32	PropertyMap.cpp \
33	RefBase.cpp \
34	ResourceTypes.cpp \
35	SharedBuffer.cpp \
36	Static.cpp \
37	StopWatch.cpp \
38	StreamingZipInflater.cpp \
39	String8.cpp \
40	String16.cpp \
41	StringArray.cpp \
42	SystemClock.cpp \
43	TextOutput.cpp \
44	Threads.cpp \
45	Timers.cpp \
46	Tokenizer.cpp \
47	Unicode.cpp \
48	VectorImpl.cpp \
49	ZipFileCRO.cpp \
50	ZipFileRO.cpp \
51	ZipUtils.cpp \
52	misc.cpp
53
54
55# For the host
56# =====================================================
57
58include $(CLEAR_VARS)
59
60LOCAL_SRC_FILES:= $(commonSources)
61
62LOCAL_MODULE:= libutils
63
64LOCAL_CFLAGS += -DLIBUTILS_NATIVE=1 $(TOOL_CFLAGS)
65LOCAL_C_INCLUDES += external/zlib
66
67ifeq ($(HOST_OS),windows)
68ifeq ($(strip $(USE_CYGWIN),),)
69# Under MinGW, ctype.h doesn't need multi-byte support
70LOCAL_CFLAGS += -DMB_CUR_MAX=1
71endif
72endif
73
74include $(BUILD_HOST_STATIC_LIBRARY)
75
76
77
78# For the device
79# =====================================================
80include $(CLEAR_VARS)
81
82
83# we have the common sources, plus some device-specific stuff
84LOCAL_SRC_FILES:= \
85	$(commonSources) \
86	BackupData.cpp \
87	BackupHelpers.cpp \
88	Looper.cpp
89
90ifeq ($(TARGET_OS),linux)
91LOCAL_LDLIBS += -lrt -ldl
92endif
93
94LOCAL_C_INCLUDES += \
95		external/zlib \
96		external/icu4c/common
97
98LOCAL_LDLIBS += -lpthread
99
100LOCAL_SHARED_LIBRARIES := \
101	libz \
102	liblog \
103	libcutils
104
105ifneq ($(TARGET_SIMULATOR),true)
106ifeq ($(TARGET_OS)-$(TARGET_ARCH),linux-x86)
107# This is needed on x86 to bring in dl_iterate_phdr for CallStack.cpp
108LOCAL_SHARED_LIBRARIES += libdl
109endif # linux-x86
110endif # sim
111
112LOCAL_MODULE:= libutils
113include $(BUILD_SHARED_LIBRARY)
114
115ifneq ($(TARGET_SIMULATOR),true)
116ifeq ($(TARGET_OS),linux)
117include $(CLEAR_VARS)
118LOCAL_C_INCLUDES += external/zlib external/icu4c/common
119LOCAL_LDLIBS := -lrt -ldl -lpthread
120LOCAL_MODULE := libutils
121LOCAL_SRC_FILES := $(commonSources) BackupData.cpp BackupHelpers.cpp
122include $(BUILD_STATIC_LIBRARY)
123endif
124endif
125
126
127# Include subdirectory makefiles
128# ============================================================
129
130# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
131# team really wants is to build the stuff defined by this makefile.
132ifeq (,$(ONE_SHOT_MAKEFILE))
133include $(call first-makefiles-under,$(LOCAL_PATH))
134endif
135