2009-05-18 22:08:03 +00:00
|
|
|
# Copyright (C) 2009 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
# we have the common sources, plus some device-specific stuff
|
2010-05-06 07:55:09 +00:00
|
|
|
sources := \
|
2013-02-12 23:12:21 +00:00
|
|
|
AppOpsManager.cpp \
|
2010-05-06 07:55:09 +00:00
|
|
|
Binder.cpp \
|
|
|
|
BpBinder.cpp \
|
2013-05-07 03:20:50 +00:00
|
|
|
BufferedTextOutput.cpp \
|
|
|
|
Debug.cpp \
|
2013-02-12 23:12:21 +00:00
|
|
|
IAppOpsCallback.cpp \
|
|
|
|
IAppOpsService.cpp \
|
2010-05-06 07:55:09 +00:00
|
|
|
IInterface.cpp \
|
|
|
|
IMemory.cpp \
|
|
|
|
IPCThreadState.cpp \
|
|
|
|
IPermissionController.cpp \
|
|
|
|
IServiceManager.cpp \
|
|
|
|
MemoryDealer.cpp \
|
2009-05-18 22:08:03 +00:00
|
|
|
MemoryBase.cpp \
|
|
|
|
MemoryHeapBase.cpp \
|
2010-05-06 07:55:09 +00:00
|
|
|
Parcel.cpp \
|
2011-06-27 23:05:52 +00:00
|
|
|
PermissionCache.cpp \
|
2010-05-06 07:55:09 +00:00
|
|
|
ProcessState.cpp \
|
2013-05-07 03:20:50 +00:00
|
|
|
Static.cpp \
|
|
|
|
TextOutput.cpp \
|
2009-05-18 22:08:03 +00:00
|
|
|
|
2010-05-06 07:55:09 +00:00
|
|
|
LOCAL_PATH:= $(call my-dir)
|
2009-05-18 22:08:03 +00:00
|
|
|
|
2010-05-06 07:55:09 +00:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libbinder
|
|
|
|
LOCAL_SHARED_LIBRARIES := liblog libcutils libutils
|
|
|
|
LOCAL_SRC_FILES := $(sources)
|
2014-01-29 03:57:02 +00:00
|
|
|
ifneq ($(TARGET_USES_64_BIT_BINDER),true)
|
2014-02-03 22:46:30 +00:00
|
|
|
ifneq ($(TARGET_IS_64_BIT),true)
|
2014-01-29 03:57:02 +00:00
|
|
|
LOCAL_CFLAGS += -DBINDER_IPC_32BIT=1
|
|
|
|
endif
|
2014-02-03 22:46:30 +00:00
|
|
|
endif
|
2009-05-18 22:08:03 +00:00
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
2010-05-06 07:55:09 +00:00
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libbinder
|
2013-07-23 20:42:12 +00:00
|
|
|
LOCAL_STATIC_LIBRARIES += libutils
|
2010-05-06 07:55:09 +00:00
|
|
|
LOCAL_SRC_FILES := $(sources)
|
2014-01-29 03:57:02 +00:00
|
|
|
ifneq ($(TARGET_USES_64_BIT_BINDER),true)
|
2014-02-03 22:46:30 +00:00
|
|
|
ifneq ($(TARGET_IS_64_BIT),true)
|
2014-01-29 03:57:02 +00:00
|
|
|
LOCAL_CFLAGS += -DBINDER_IPC_32BIT=1
|
|
|
|
endif
|
2014-02-03 22:46:30 +00:00
|
|
|
endif
|
2010-05-06 07:55:09 +00:00
|
|
|
include $(BUILD_STATIC_LIBRARY)
|