blob: 8523bb205fd73595ff903341bd749e98b8e52663 [file] [log] [blame]
Jiwen 'Steve' Caic257da72018-03-11 18:15:22 -07001// Copyright (C) 2016 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
Bob Badour3c538232021-02-12 21:26:48 -080015package {
16 // See: http://go/android-license-faq
17 // A large-scale-change added 'default_applicable_licenses' to import
18 // all of the 'license_kinds' from "frameworks_native_license"
19 // to get the below license kinds:
20 // SPDX-license-identifier-Apache-2.0
21 // SPDX-license-identifier-MIT
22 // SPDX-license-identifier-Unicode-DFS
23 default_applicable_licenses: ["frameworks_native_license"],
24}
25
Jiwen 'Steve' Caic257da72018-03-11 18:15:22 -070026sharedLibraries = [
27 "libbase",
Jiwen 'Steve' Caic257da72018-03-11 18:15:22 -070028 "libcutils",
Jiwen 'Steve' Caic257da72018-03-11 18:15:22 -070029 "libgui",
Fan Xucfd12742018-09-14 13:23:52 -070030 "liblog",
Jiwen 'Steve' Caic257da72018-03-11 18:15:22 -070031 "libpdx_default_transport",
Fan Xucfd12742018-09-14 13:23:52 -070032 "libsync",
33 "libui",
34 "libutils",
Jiwen 'Steve' Caic257da72018-03-11 18:15:22 -070035]
36
Fan Xucfd12742018-09-14 13:23:52 -070037cc_library_static {
38 name: "libbufferhubd",
39 srcs: [
Fan Xucfd12742018-09-14 13:23:52 -070040 "buffer_hub.cpp",
Fan Xucfd12742018-09-14 13:23:52 -070041 "consumer_channel.cpp",
42 "consumer_queue_channel.cpp",
43 "producer_channel.cpp",
44 "producer_queue_channel.cpp",
45 ],
46 cflags: [
47 "-DLOG_TAG=\"libbufferhubd\"",
48 "-DTRACE=0",
49 "-DATRACE_TAG=ATRACE_TAG_GRAPHICS",
50 ],
51 export_include_dirs: ["include"],
Fan Xu9f9a4612018-12-03 16:32:13 -080052 header_libs: ["libdvr_headers"],
Fan Xucfd12742018-09-14 13:23:52 -070053 shared_libs: sharedLibraries,
54 static_libs: [
55 "libbufferhub",
56 ],
Fan Xucfd12742018-09-14 13:23:52 -070057}
58
Jiwen 'Steve' Caic257da72018-03-11 18:15:22 -070059cc_binary {
Fan Xucfd12742018-09-14 13:23:52 -070060 srcs: ["bufferhubd.cpp"],
Roman Kiryanov75a46a12020-11-17 21:19:17 -080061 system_ext_specific: true,
Jiwen 'Steve' Caic257da72018-03-11 18:15:22 -070062 cflags: [
63 "-DLOG_TAG=\"bufferhubd\"",
64 "-DTRACE=0",
65 "-DATRACE_TAG=ATRACE_TAG_GRAPHICS",
66 ],
Fan Xucfd12742018-09-14 13:23:52 -070067 header_libs: ["libdvr_headers"],
Jiwen 'Steve' Caic257da72018-03-11 18:15:22 -070068 shared_libs: sharedLibraries,
Fan Xucfd12742018-09-14 13:23:52 -070069 static_libs: [
70 "libbufferhub",
71 "libbufferhubd",
72 "libperformance",
73 ],
Jiwen 'Steve' Caic257da72018-03-11 18:15:22 -070074 name: "bufferhubd",
75 init_rc: ["bufferhubd.rc"],
76}