blob: 2df67752054773bd317c143aaff12ef4cd964fa9 [file] [log] [blame]
Mathias Agopian25ba5b62009-05-18 15:08:03 -07001# 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
15LOCAL_PATH:= $(call my-dir)
16include $(CLEAR_VARS)
17
18# we have the common sources, plus some device-specific stuff
19LOCAL_SRC_FILES:= \
20 Binder.cpp \
21 BpBinder.cpp \
22 IInterface.cpp \
23 IMemory.cpp \
24 IPCThreadState.cpp \
25 IPermissionController.cpp \
26 IServiceManager.cpp \
27 MemoryDealer.cpp \
28 MemoryBase.cpp \
29 MemoryHeapBase.cpp \
30 MemoryHeapPmem.cpp \
31 Parcel.cpp \
Mathias Agopian151e8592009-06-15 18:24:59 -070032 Permission.cpp \
Mathias Agopian25ba5b62009-05-18 15:08:03 -070033 ProcessState.cpp \
34 Static.cpp
35
36LOCAL_LDLIBS += -lpthread
37
38LOCAL_SHARED_LIBRARIES := \
39 liblog \
40 libcutils \
41 libutils
42
43LOCAL_MODULE:= libbinder
44
45include $(BUILD_SHARED_LIBRARY)