1# 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# 16LOCAL_PATH := $(my-dir) 17include $(CLEAR_VARS) 18 19ifeq ($(TARGET_CPU_SMP),true) 20 targetSmpFlag := -DANDROID_SMP=1 21else 22 targetSmpFlag := -DANDROID_SMP=0 23endif 24hostSmpFlag := -DANDROID_SMP=0 25 26commonSources := \ 27 array.c \ 28 hashmap.c \ 29 atomic.c.arm \ 30 native_handle.c \ 31 buffer.c \ 32 socket_inaddr_any_server.c \ 33 socket_local_client.c \ 34 socket_local_server.c \ 35 socket_loopback_client.c \ 36 socket_loopback_server.c \ 37 socket_network_client.c \ 38 sockets.c \ 39 config_utils.c \ 40 cpu_info.c \ 41 load_file.c \ 42 list.c \ 43 open_memstream.c \ 44 strdup16to8.c \ 45 strdup8to16.c \ 46 record_stream.c \ 47 process_name.c \ 48 properties.c \ 49 qsort_r_compat.c \ 50 threads.c \ 51 sched_policy.c \ 52 iosched_policy.c \ 53 str_parms.c 54 55commonHostSources := \ 56 ashmem-host.c 57 58# some files must not be compiled when building against Mingw 59# they correspond to features not used by our host development tools 60# which are also hard or even impossible to port to native Win32 61WINDOWS_HOST_ONLY := 62ifeq ($(HOST_OS),windows) 63 ifeq ($(strip $(USE_CYGWIN)),) 64 WINDOWS_HOST_ONLY := 1 65 endif 66endif 67# USE_MINGW is defined when we build against Mingw on Linux 68ifneq ($(strip $(USE_MINGW)),) 69 WINDOWS_HOST_ONLY := 1 70endif 71 72ifeq ($(WINDOWS_HOST_ONLY),1) 73 commonSources += \ 74 uio.c 75else 76 commonSources += \ 77 abort_socket.c \ 78 mspace.c \ 79 selector.c \ 80 tztime.c \ 81 zygote.c 82 83 commonHostSources += \ 84 tzstrftime.c 85endif 86 87 88# Static library for host 89# ======================================================== 90LOCAL_MODULE := libcutils 91LOCAL_SRC_FILES := $(commonSources) $(commonHostSources) dlmalloc_stubs.c 92LOCAL_LDLIBS := -lpthread 93LOCAL_STATIC_LIBRARIES := liblog 94LOCAL_CFLAGS += $(hostSmpFlag) 95include $(BUILD_HOST_STATIC_LIBRARY) 96 97 98# Static library for host, 64-bit 99# ======================================================== 100include $(CLEAR_VARS) 101LOCAL_MODULE := lib64cutils 102LOCAL_SRC_FILES := $(commonSources) $(commonHostSources) dlmalloc_stubs.c 103LOCAL_LDLIBS := -lpthread 104LOCAL_STATIC_LIBRARIES := lib64log 105LOCAL_CFLAGS += $(hostSmpFlag) -m64 106include $(BUILD_HOST_STATIC_LIBRARY) 107 108 109# Shared and static library for target 110# ======================================================== 111 112# This is needed in LOCAL_C_INCLUDES to access the C library's private 113# header named <bionic_time.h> 114# 115libcutils_c_includes := bionic/libc/private 116 117include $(CLEAR_VARS) 118LOCAL_MODULE := libcutils 119LOCAL_SRC_FILES := $(commonSources) \ 120 android_reboot.c \ 121 ashmem-dev.c \ 122 debugger.c \ 123 klog.c \ 124 mq.c \ 125 partition_utils.c \ 126 qtaguid.c \ 127 uevent.c 128 129ifeq ($(TARGET_ARCH),arm) 130LOCAL_SRC_FILES += arch-arm/memset32.S 131else # !arm 132ifeq ($(TARGET_ARCH),sh) 133LOCAL_SRC_FILES += memory.c atomic-android-sh.c 134else # !sh 135ifeq ($(TARGET_ARCH_VARIANT),x86-atom) 136LOCAL_CFLAGS += -DHAVE_MEMSET16 -DHAVE_MEMSET32 137LOCAL_SRC_FILES += arch-x86/android_memset16.S arch-x86/android_memset32.S memory.c 138else # !x86-atom 139LOCAL_SRC_FILES += memory.c 140endif # !x86-atom 141endif # !sh 142endif # !arm 143 144LOCAL_C_INCLUDES := $(libcutils_c_includes) $(KERNEL_HEADERS) 145LOCAL_STATIC_LIBRARIES := liblog 146LOCAL_CFLAGS += $(targetSmpFlag) 147include $(BUILD_STATIC_LIBRARY) 148 149include $(CLEAR_VARS) 150LOCAL_MODULE := libcutils 151LOCAL_WHOLE_STATIC_LIBRARIES := libcutils 152LOCAL_SHARED_LIBRARIES := liblog 153LOCAL_CFLAGS += $(targetSmpFlag) 154LOCAL_C_INCLUDES := $(libcutils_c_includes) 155include $(BUILD_SHARED_LIBRARY) 156 157include $(CLEAR_VARS) 158LOCAL_MODULE := tst_str_parms 159LOCAL_CFLAGS += -DTEST_STR_PARMS 160LOCAL_SRC_FILES := str_parms.c hashmap.c memory.c 161LOCAL_SHARED_LIBRARIES := liblog 162LOCAL_MODULE_TAGS := optional 163include $(BUILD_EXECUTABLE) 164