blob: 477999537369d11108ccb2c67b5f86f7bb4b15c9 [file] [log] [blame]
Ken Chenec0f7ac2023-09-08 14:14:55 +08001//
2// Copyright (C) 2023 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16package {
17 default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20cc_library {
21 name: "libcom.android.tethering.dns_helper",
22 version_script: "libcom.android.tethering.dns_helper.map.txt",
23 stubs: {
24 versions: [
25 "1",
26 ],
27 symbol_file: "libcom.android.tethering.dns_helper.map.txt",
28 },
29 defaults: ["netd_defaults"],
30 header_libs: [
31 "bpf_connectivity_headers",
32 "libcutils_headers",
33 ],
34 srcs: [
35 "DnsBpfHelper.cpp",
36 "DnsHelper.cpp",
37 ],
38 static_libs: [
39 "libmodules-utils-build",
40 ],
41 shared_libs: [
42 "libbase",
43 ],
44 export_include_dirs: ["include"],
45 header_abi_checker: {
46 enabled: true,
47 symbol_file: "libcom.android.tethering.dns_helper.map.txt",
48 },
49 sanitize: {
50 cfi: true,
51 },
52 apex_available: ["com.android.tethering"],
53 min_sdk_version: "30",
54}