blob: 7c1eaaf923a0418b324f798b4b8020ace56c78a8 [file] [log] [blame]
Dan Willemsene05dc6d2016-07-25 17:13:45 -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
Vijay Venkatraman5583be72017-03-24 16:13:58 -070015cc_library_headers {
16 name: "libbinder_headers",
17 export_include_dirs: ["include"],
Jiyong Park172bd722017-06-21 12:14:18 +090018 vendor_available: true,
Jiyong Parkb7df6cb2017-04-13 21:19:48 -070019 header_libs: [
20 "libbase_headers",
21 "libcutils_headers",
22 "libutils_headers",
23 ],
24 export_header_lib_headers: [
25 "libbase_headers",
26 "libcutils_headers",
27 "libutils_headers",
28 ],
Vijay Venkatraman5583be72017-03-24 16:13:58 -070029}
30
Dan Willemsene05dc6d2016-07-25 17:13:45 -070031cc_library {
32 name: "libbinder",
33
Steven Moreland3aa76162017-04-13 21:19:48 -070034 // for vndbinder
35 vendor_available: true,
Justin Yunb367ff42017-08-02 17:02:05 +090036 vndk: {
37 enabled: true,
38 },
Steven Moreland3aa76162017-04-13 21:19:48 -070039
Dan Willemsene05dc6d2016-07-25 17:13:45 -070040 srcs: [
Ganesh Mahendran4d85b8c2017-11-02 14:43:38 +000041 "ActivityManager.cpp",
Dan Willemsene05dc6d2016-07-25 17:13:45 -070042 "AppOpsManager.cpp",
43 "Binder.cpp",
44 "BpBinder.cpp",
45 "BufferedTextOutput.cpp",
46 "Debug.cpp",
Sudheer Shanka6ef26f12016-11-23 15:52:26 -080047 "IActivityManager.cpp",
Dan Willemsene05dc6d2016-07-25 17:13:45 -070048 "IAppOpsCallback.cpp",
49 "IAppOpsService.cpp",
50 "IBatteryStats.cpp",
51 "IInterface.cpp",
52 "IMediaResourceMonitor.cpp",
53 "IMemory.cpp",
54 "IPCThreadState.cpp",
55 "IPermissionController.cpp",
56 "IProcessInfoService.cpp",
57 "IResultReceiver.cpp",
58 "IServiceManager.cpp",
Dianne Hackborn1941a402016-08-29 12:30:43 -070059 "IShellCallback.cpp",
Ganesh Mahendran4d85b8c2017-11-02 14:43:38 +000060 "IUidObserver.cpp",
Dan Willemsene05dc6d2016-07-25 17:13:45 -070061 "MemoryBase.cpp",
62 "MemoryDealer.cpp",
63 "MemoryHeapBase.cpp",
64 "Parcel.cpp",
65 "PermissionCache.cpp",
Svet Ganove752a5c2018-01-15 17:14:20 -080066 "PermissionController.cpp",
Dan Willemsene05dc6d2016-07-25 17:13:45 -070067 "PersistableBundle.cpp",
68 "ProcessInfoService.cpp",
69 "ProcessState.cpp",
70 "Static.cpp",
71 "Status.cpp",
72 "TextOutput.cpp",
Robert Quattlebaum6316f5b2017-01-04 13:25:14 -080073 "IpPrefix.cpp",
74 "Value.cpp",
Colin Cross21c210e2017-11-14 13:05:37 -080075 ":libbinder_aidl",
Dan Willemsene05dc6d2016-07-25 17:13:45 -070076 ],
77
Jiyong Park47f876b2018-04-17 13:56:46 +090078 target: {
79 vendor: {
80 exclude_srcs: [
81 "ActivityManager.cpp",
82 "AppOpsManager.cpp",
83 "IActivityManager.cpp",
84 "IAppOpsCallback.cpp",
85 "IAppOpsService.cpp",
86 "IBatteryStats.cpp",
87 "IMediaResourceMonitor.cpp",
88 "IPermissionController.cpp",
89 "IProcessInfoService.cpp",
90 "IUidObserver.cpp",
91 "PermissionCache.cpp",
92 "PermissionController.cpp",
93 "ProcessInfoService.cpp",
94 "IpPrefix.cpp",
95 ":libbinder_aidl",
96 ],
97 },
98 },
99
Todd Kennedy757186e2017-08-02 07:49:20 -0700100 aidl: {
101 export_aidl_headers: true,
102 },
103
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700104 cflags: [
105 "-Wall",
106 "-Wextra",
107 "-Werror",
108 ],
109 product_variables: {
110 binder32bit: {
111 cflags: ["-DBINDER_IPC_32BIT=1"],
112 },
113 },
114
115 shared_libs: [
116 "libbase",
117 "liblog",
118 "libcutils",
119 "libutils",
David Sehr07562652018-01-17 17:10:18 -0800120 "libutilscallstack",
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700121 ],
Jiyong Park42842052017-06-20 13:51:22 +0900122
123 header_libs: [
124 "libbinder_headers",
125 ],
126
Jiyong Park42842052017-06-20 13:51:22 +0900127 export_header_lib_headers: [
128 "libbinder_headers",
Dan Stozad630e522016-12-01 15:16:31 -0800129 ],
130
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700131 clang: true,
132 sanitize: {
133 misc_undefined: ["integer"],
134 },
135}
136
Colin Cross21c210e2017-11-14 13:05:37 -0800137// AIDL interface between libbinder and framework.jar
138filegroup {
139 name: "libbinder_aidl",
140 srcs: [
141 "aidl/android/content/pm/IPackageManagerNative.aidl",
142 ],
143}
144
Dan Willemsene05dc6d2016-07-25 17:13:45 -0700145subdirs = ["tests"]