OSDN Git Service

am 8641112a: am 4e7fd950: Merge "Use 64 bit binder interface if TARGET_USES_64_BIT_BI...
[android-x86/frameworks-native.git] / libs / binder / Android.mk
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
16 sources := \
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     IServiceManager.cpp \
30     MemoryDealer.cpp \
31     MemoryBase.cpp \
32     MemoryHeapBase.cpp \
33     Parcel.cpp \
34     PermissionCache.cpp \
35     ProcessState.cpp \
36     Static.cpp \
37     TextOutput.cpp \
38
39 LOCAL_PATH:= $(call my-dir)
40
41 include $(CLEAR_VARS)
42 LOCAL_LDLIBS += -lpthread
43 LOCAL_MODULE := libbinder
44 LOCAL_SHARED_LIBRARIES := liblog libcutils libutils
45 LOCAL_SRC_FILES := $(sources)
46 ifneq ($(TARGET_USES_64_BIT_BINDER),true)
47 ifneq ($(TARGET_IS_64_BIT),true)
48 LOCAL_CFLAGS += -DBINDER_IPC_32BIT=1
49 endif
50 endif
51 include $(BUILD_SHARED_LIBRARY)
52
53 include $(CLEAR_VARS)
54 LOCAL_LDLIBS += -lpthread
55 LOCAL_MODULE := libbinder
56 LOCAL_STATIC_LIBRARIES += libutils
57 LOCAL_SRC_FILES := $(sources)
58 ifneq ($(TARGET_USES_64_BIT_BINDER),true)
59 ifneq ($(TARGET_IS_64_BIT),true)
60 LOCAL_CFLAGS += -DBINDER_IPC_32BIT=1
61 endif
62 endif
63 include $(BUILD_STATIC_LIBRARY)