Android.mk revision 4f6e8d7a00cbeda1e70cc15be9c4af1018bdad53
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
19liblog_sources := logd_write.c
20
21# some files must not be compiled when building against Mingw
22# they correspond to features not used by our host development tools
23# which are also hard or even impossible to port to native Win32
24WITH_MINGW :=
25ifeq ($(HOST_OS),windows)
26    ifeq ($(strip $(USE_CYGWIN)),)
27        WITH_MINGW := true
28    endif
29endif
30# USE_MINGW is defined when we build against Mingw on Linux
31ifneq ($(strip $(USE_MINGW)),)
32    WITH_MINGW := true
33endif
34
35ifndef WITH_MINGW
36    liblog_sources += \
37        logprint.c \
38        event_tag_map.c
39endif
40
41liblog_host_sources := $(liblog_sources) fake_log_device.c
42
43# Static library for host
44# ========================================================
45LOCAL_MODULE := liblog
46LOCAL_SRC_FILES := $(liblog_host_sources)
47LOCAL_LDLIBS := -lpthread
48LOCAL_CFLAGS := -DFAKE_LOG_DEVICE=1
49include $(BUILD_HOST_STATIC_LIBRARY)
50
51ifeq ($(TARGET_SIMULATOR),true)
52  # Shared library for simulator
53  # ========================================================
54  include $(CLEAR_VARS)
55  LOCAL_MODULE := liblog
56  LOCAL_SRC_FILES := $(liblog_host_sources)
57  LOCAL_LDLIBS := -lpthread
58  LOCAL_CFLAGS := -DFAKE_LOG_DEVICE=1
59  include $(BUILD_SHARED_LIBRARY)
60else # !sim
61  # Shared and static library for target
62  # ========================================================
63  include $(CLEAR_VARS)
64  LOCAL_MODULE := liblog
65  LOCAL_SRC_FILES := $(liblog_sources)
66  include $(BUILD_STATIC_LIBRARY)
67
68  include $(CLEAR_VARS)
69  LOCAL_MODULE := liblog
70  LOCAL_WHOLE_STATIC_LIBRARIES := liblog
71  include $(BUILD_SHARED_LIBRARY)
72endif # !sim
73