1# Copyright (C) 2009 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
15# we have the common sources, plus some device-specific stuff
16sources := \
17    AppOpsManager.cpp \
18    Binder.cpp \
19    BpBinder.cpp \
20    BufferedTextOutput.cpp \
21    Debug.cpp \
22    IAppOpsCallback.cpp \
23    IAppOpsService.cpp \
24    IBatteryStats.cpp \
25    IInterface.cpp \
26    IMemory.cpp \
27    IPCThreadState.cpp \
28    IPermissionController.cpp \
29    IProcessInfoService.cpp \
30    ProcessInfoService.cpp \
31    IServiceManager.cpp \
32    MemoryDealer.cpp \
33    MemoryBase.cpp \
34    MemoryHeapBase.cpp \
35    Parcel.cpp \
36    PermissionCache.cpp \
37    ProcessState.cpp \
38    Static.cpp \
39    TextOutput.cpp \
40
41LOCAL_PATH:= $(call my-dir)
42
43include $(CLEAR_VARS)
44LOCAL_MODULE := libbinder
45LOCAL_SHARED_LIBRARIES := liblog libcutils libutils
46LOCAL_SRC_FILES := $(sources)
47ifneq ($(TARGET_USES_64_BIT_BINDER),true)
48ifneq ($(TARGET_IS_64_BIT),true)
49LOCAL_CFLAGS += -DBINDER_IPC_32BIT=1
50endif
51endif
52LOCAL_CFLAGS += -Werror
53include $(BUILD_SHARED_LIBRARY)
54
55include $(CLEAR_VARS)
56LOCAL_MODULE := libbinder
57LOCAL_STATIC_LIBRARIES += libutils
58LOCAL_SRC_FILES := $(sources)
59ifneq ($(TARGET_USES_64_BIT_BINDER),true)
60ifneq ($(TARGET_IS_64_BIT),true)
61LOCAL_CFLAGS += -DBINDER_IPC_32BIT=1
62endif
63endif
64LOCAL_CFLAGS += -Werror
65include $(BUILD_STATIC_LIBRARY)
66