2009-03-04 03:31:44 +00:00
|
|
|
# Copyright (C) 2008 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
|
|
|
|
# libutils is a little unique: It's built twice, once for the host
|
|
|
|
# and once for the device.
|
|
|
|
|
|
|
|
commonSources:= \
|
Add a basic hashtable data structure, with tests!
The basic hashtable is intended to be used to support a variety
of different datastructures such as map, set, multimap,
multiset, linkedmap, generationcache, etc.
Consequently its interface is fairly primitive.
The basic hashtable supports copy-on-write style functionality
using SharedBuffer.
The change introduces a simple generic function in TypeHelpers for
specifying hash functions. The idea is to add template
specializations of hash_type<T> next to the relevant data structures
such as String8, String16, sp<T>, etc.
Change-Id: I2c479229e9d4527b4fbfe3b8b04776a2fd32c973
2011-11-15 02:29:15 +00:00
|
|
|
BasicHashtable.cpp \
|
2011-04-28 23:19:45 +00:00
|
|
|
BlobCache.cpp \
|
2009-03-04 03:31:44 +00:00
|
|
|
BufferedTextOutput.cpp \
|
|
|
|
CallStack.cpp \
|
|
|
|
Debug.cpp \
|
|
|
|
FileMap.cpp \
|
2010-02-12 01:30:52 +00:00
|
|
|
Flattenable.cpp \
|
2011-06-29 00:43:30 +00:00
|
|
|
LinearTransform.cpp \
|
2010-11-30 01:37:49 +00:00
|
|
|
PropertyMap.cpp \
|
2009-03-04 03:31:44 +00:00
|
|
|
RefBase.cpp \
|
|
|
|
SharedBuffer.cpp \
|
|
|
|
Static.cpp \
|
|
|
|
StopWatch.cpp \
|
|
|
|
String8.cpp \
|
|
|
|
String16.cpp \
|
2009-06-05 08:26:23 +00:00
|
|
|
StringArray.cpp \
|
2009-03-04 03:31:44 +00:00
|
|
|
SystemClock.cpp \
|
|
|
|
TextOutput.cpp \
|
|
|
|
Threads.cpp \
|
|
|
|
Timers.cpp \
|
2010-11-11 00:03:06 +00:00
|
|
|
Tokenizer.cpp \
|
2010-11-09 22:37:23 +00:00
|
|
|
Unicode.cpp \
|
2009-03-04 03:31:44 +00:00
|
|
|
VectorImpl.cpp \
|
2012-03-17 05:18:39 +00:00
|
|
|
WorkQueue.cpp \
|
2009-06-05 22:11:23 +00:00
|
|
|
misc.cpp
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2012-03-13 07:55:34 +00:00
|
|
|
host_commonCflags := -DLIBUTILS_NATIVE=1 $(TOOL_CFLAGS)
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
ifeq ($(HOST_OS),windows)
|
|
|
|
ifeq ($(strip $(USE_CYGWIN),),)
|
|
|
|
# Under MinGW, ctype.h doesn't need multi-byte support
|
2012-03-13 07:55:34 +00:00
|
|
|
host_commonCflags += -DMB_CUR_MAX=1
|
2009-03-04 03:31:44 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2012-03-13 07:55:34 +00:00
|
|
|
host_commonLdlibs :=
|
|
|
|
|
2011-10-20 05:35:56 +00:00
|
|
|
ifeq ($(TARGET_OS),linux)
|
2012-03-13 07:55:34 +00:00
|
|
|
host_commonLdlibs += -lrt -ldl
|
2011-10-20 05:35:56 +00:00
|
|
|
endif
|
|
|
|
|
2012-03-13 07:55:34 +00:00
|
|
|
|
|
|
|
# For the host
|
|
|
|
# =====================================================
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= $(commonSources)
|
|
|
|
LOCAL_MODULE:= libutils
|
|
|
|
LOCAL_CFLAGS += $(host_commonCflags)
|
|
|
|
LOCAL_LDLIBS += $(host_commonLdlibs)
|
|
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
|
|
|
|
# For the host, 64-bit
|
|
|
|
# =====================================================
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= $(commonSources)
|
|
|
|
LOCAL_MODULE:= lib64utils
|
|
|
|
LOCAL_CFLAGS += $(host_commonCflags) -m64
|
|
|
|
LOCAL_LDLIBS += $(host_commonLdlibs)
|
2009-03-04 03:31:44 +00:00
|
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
|
|
|
|
# For the device
|
|
|
|
# =====================================================
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
|
|
|
|
# we have the common sources, plus some device-specific stuff
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
|
|
$(commonSources) \
|
2012-02-23 19:28:28 +00:00
|
|
|
Looper.cpp \
|
|
|
|
Trace.cpp
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
ifeq ($(TARGET_OS),linux)
|
|
|
|
LOCAL_LDLIBS += -lrt -ldl
|
|
|
|
endif
|
|
|
|
|
|
|
|
LOCAL_C_INCLUDES += \
|
2011-07-11 22:59:22 +00:00
|
|
|
bionic/libc/private
|
2009-07-13 06:11:20 +00:00
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
LOCAL_LDLIBS += -lpthread
|
|
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
|
|
liblog \
|
2011-09-29 00:33:11 +00:00
|
|
|
libcutils \
|
2011-10-20 03:32:43 +00:00
|
|
|
libdl \
|
|
|
|
libcorkscrew
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
LOCAL_MODULE:= libutils
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
|
2010-06-30 23:10:35 +00:00
|
|
|
# Include subdirectory makefiles
|
|
|
|
# ============================================================
|
|
|
|
|
|
|
|
# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
|
|
|
|
# team really wants is to build the stuff defined by this makefile.
|
|
|
|
ifeq (,$(ONE_SHOT_MAKEFILE))
|
|
|
|
include $(call first-makefiles-under,$(LOCAL_PATH))
|
2010-07-26 18:24:18 +00:00
|
|
|
endif
|