2009-03-04 04:31:44 +01: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 03:29:15 +01:00
|
|
|
BasicHashtable.cpp \
|
2011-04-29 01:19:45 +02:00
|
|
|
BlobCache.cpp \
|
2009-03-04 04:31:44 +01:00
|
|
|
CallStack.cpp \
|
|
|
|
FileMap.cpp \
|
2012-10-26 08:11:13 +02:00
|
|
|
JenkinsHash.cpp \
|
2012-12-05 19:36:45 +01:00
|
|
|
LinearAllocator.cpp \
|
2011-06-29 02:43:30 +02:00
|
|
|
LinearTransform.cpp \
|
2012-08-11 05:44:39 +02:00
|
|
|
Log.cpp \
|
2014-03-03 19:52:14 +01:00
|
|
|
NativeHandle.cpp \
|
2013-10-25 02:09:15 +02:00
|
|
|
Printer.cpp \
|
|
|
|
ProcessCallStack.cpp \
|
2010-11-30 02:37:49 +01:00
|
|
|
PropertyMap.cpp \
|
2009-03-04 04:31:44 +01:00
|
|
|
RefBase.cpp \
|
|
|
|
SharedBuffer.cpp \
|
|
|
|
Static.cpp \
|
|
|
|
StopWatch.cpp \
|
|
|
|
String8.cpp \
|
|
|
|
String16.cpp \
|
|
|
|
SystemClock.cpp \
|
|
|
|
Threads.cpp \
|
|
|
|
Timers.cpp \
|
2010-11-11 01:03:06 +01:00
|
|
|
Tokenizer.cpp \
|
2010-11-09 23:37:23 +01:00
|
|
|
Unicode.cpp \
|
2009-03-04 04:31:44 +01:00
|
|
|
VectorImpl.cpp \
|
2009-06-06 00:11:23 +02:00
|
|
|
misc.cpp
|
2009-03-04 04:31:44 +01:00
|
|
|
|
2014-04-30 20:10:46 +02:00
|
|
|
host_commonCflags := -DLIBUTILS_NATIVE=1 $(TOOL_CFLAGS) -Werror
|
2009-03-04 04:31:44 +01:00
|
|
|
|
|
|
|
ifeq ($(HOST_OS),windows)
|
|
|
|
ifeq ($(strip $(USE_CYGWIN),),)
|
|
|
|
# Under MinGW, ctype.h doesn't need multi-byte support
|
2012-03-13 08:55:34 +01:00
|
|
|
host_commonCflags += -DMB_CUR_MAX=1
|
2009-03-04 04:31:44 +01:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2012-03-13 08:55:34 +01:00
|
|
|
# For the host
|
|
|
|
# =====================================================
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= $(commonSources)
|
2012-03-26 23:44:24 +02:00
|
|
|
ifeq ($(HOST_OS), linux)
|
|
|
|
LOCAL_SRC_FILES += Looper.cpp
|
|
|
|
endif
|
2014-07-25 02:22:09 +02:00
|
|
|
ifeq ($(HOST_OS),darwin)
|
|
|
|
LOCAL_CFLAGS += -Wno-unused-parameter
|
|
|
|
endif
|
2012-03-13 08:55:34 +01:00
|
|
|
LOCAL_MODULE:= libutils
|
2013-07-24 02:39:35 +02:00
|
|
|
LOCAL_STATIC_LIBRARIES := liblog
|
2012-03-13 08:55:34 +01:00
|
|
|
LOCAL_CFLAGS += $(host_commonCflags)
|
2014-06-05 23:32:49 +02:00
|
|
|
LOCAL_MULTILIB := both
|
2012-03-13 08:55:34 +01:00
|
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
|
2013-03-22 15:26:33 +01:00
|
|
|
# For the device, static
|
2009-03-04 04:31:44 +01:00
|
|
|
# =====================================================
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
|
|
|
|
# we have the common sources, plus some device-specific stuff
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
|
|
$(commonSources) \
|
2012-02-23 20:28:28 +01:00
|
|
|
Looper.cpp \
|
|
|
|
Trace.cpp
|
2009-03-04 04:31:44 +01:00
|
|
|
|
2012-12-05 19:36:45 +01:00
|
|
|
ifeq ($(TARGET_ARCH),mips)
|
|
|
|
LOCAL_CFLAGS += -DALIGN_DOUBLE
|
|
|
|
endif
|
2014-04-30 20:10:46 +02:00
|
|
|
LOCAL_CFLAGS += -Werror
|
2012-12-05 19:36:45 +01:00
|
|
|
|
2013-03-22 15:26:33 +01:00
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
2013-05-07 05:20:50 +02:00
|
|
|
libcutils
|
2009-03-04 04:31:44 +01:00
|
|
|
|
2013-03-22 15:26:33 +01:00
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
2014-05-30 21:40:58 +02:00
|
|
|
libbacktrace \
|
2013-03-22 15:26:33 +01:00
|
|
|
liblog \
|
|
|
|
libdl
|
|
|
|
|
|
|
|
LOCAL_MODULE:= libutils
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
# For the device, shared
|
|
|
|
# =====================================================
|
|
|
|
include $(CLEAR_VARS)
|
2009-03-04 04:31:44 +01:00
|
|
|
LOCAL_MODULE:= libutils
|
2013-03-22 15:26:33 +01:00
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := libutils
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
2014-05-30 21:40:58 +02:00
|
|
|
libbacktrace \
|
2013-03-22 15:26:33 +01:00
|
|
|
libcutils \
|
|
|
|
libdl \
|
2014-04-30 20:10:46 +02:00
|
|
|
liblog
|
|
|
|
LOCAL_CFLAGS := -Werror
|
2013-11-01 00:25:04 +01:00
|
|
|
|
2009-03-04 04:31:44 +01:00
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
|
2010-07-01 01:10:35 +02: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 20:24:18 +02:00
|
|
|
endif
|