| Ken Chen | ec0f7ac | 2023-09-08 14:14:55 +0800 | [diff] [blame] | 1 | // | 
|  | 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 |  | 
|  | 16 | package { | 
|  | 17 | default_applicable_licenses: ["Android-Apache-2.0"], | 
|  | 18 | } | 
|  | 19 |  | 
|  | 20 | cc_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 | } | 
| Ken Chen | d4876de | 2023-09-13 00:53:52 +0800 | [diff] [blame] | 55 |  | 
|  | 56 | cc_test { | 
|  | 57 | name: "dns_helper_unit_test", | 
|  | 58 | defaults: ["netd_defaults"], | 
|  | 59 | test_suites: ["general-tests", "mts-tethering"], | 
|  | 60 | test_config_template: ":net_native_test_config_template", | 
|  | 61 | header_libs: [ | 
|  | 62 | "bpf_connectivity_headers", | 
|  | 63 | ], | 
|  | 64 | srcs: [ | 
|  | 65 | "DnsBpfHelperTest.cpp", | 
|  | 66 | ], | 
|  | 67 | static_libs: [ | 
|  | 68 | "libcom.android.tethering.dns_helper", | 
|  | 69 | ], | 
|  | 70 | shared_libs: [ | 
|  | 71 | "libbase", | 
|  | 72 | "libcutils", | 
|  | 73 | ], | 
|  | 74 | compile_multilib: "both", | 
|  | 75 | multilib: { | 
|  | 76 | lib32: { | 
|  | 77 | suffix: "32", | 
|  | 78 | }, | 
|  | 79 | lib64: { | 
|  | 80 | suffix: "64", | 
|  | 81 | }, | 
|  | 82 | }, | 
|  | 83 | } |