Ken Chen | 1647f60 | 2021-10-05 21:55:22 +0800 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2022 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 | |
Bob Badour | 4ef4a44 | 2022-02-10 10:57:23 -0800 | [diff] [blame] | 16 | package { |
| 17 | default_applicable_licenses: ["Android-Apache-2.0"], |
| 18 | } |
| 19 | |
Ken Chen | 1647f60 | 2021-10-05 21:55:22 +0800 | [diff] [blame] | 20 | cc_library { |
| 21 | name: "libnetd_updatable", |
| 22 | version_script: "libnetd_updatable.map.txt", |
| 23 | stubs: { |
| 24 | versions: [ |
| 25 | "1", |
| 26 | ], |
| 27 | symbol_file: "libnetd_updatable.map.txt", |
| 28 | }, |
| 29 | defaults: ["netd_defaults"], |
| 30 | header_libs: [ |
| 31 | "bpf_connectivity_headers", |
| 32 | "libcutils_headers", |
| 33 | ], |
| 34 | srcs: [ |
| 35 | "BpfHandler.cpp", |
| 36 | "NetdUpdatable.cpp", |
| 37 | ], |
Ken Chen | 1647f60 | 2021-10-05 21:55:22 +0800 | [diff] [blame] | 38 | shared_libs: [ |
Maciej Żenczykowski | dcae351 | 2022-01-31 19:59:32 -0800 | [diff] [blame] | 39 | "libbase", |
Ken Chen | 1647f60 | 2021-10-05 21:55:22 +0800 | [diff] [blame] | 40 | "liblog", |
Maciej Żenczykowski | dcae351 | 2022-01-31 19:59:32 -0800 | [diff] [blame] | 41 | "libnetdutils", |
Ken Chen | 1647f60 | 2021-10-05 21:55:22 +0800 | [diff] [blame] | 42 | ], |
| 43 | export_include_dirs: ["include"], |
| 44 | header_abi_checker: { |
| 45 | enabled: true, |
| 46 | symbol_file: "libnetd_updatable.map.txt", |
| 47 | }, |
| 48 | sanitize: { |
| 49 | cfi: true, |
| 50 | }, |
| 51 | apex_available: ["com.android.tethering"], |
| 52 | min_sdk_version: "30", |
| 53 | } |
| 54 | |
| 55 | cc_test { |
| 56 | name: "netd_updatable_unit_test", |
| 57 | defaults: ["netd_defaults"], |
| 58 | test_suites: ["general-tests"], |
| 59 | require_root: true, // required by setrlimitForTest() |
| 60 | header_libs: [ |
| 61 | "bpf_connectivity_headers", |
| 62 | ], |
| 63 | srcs: [ |
| 64 | "BpfHandlerTest.cpp", |
| 65 | ], |
| 66 | static_libs: [ |
| 67 | "libnetd_updatable", |
| 68 | ], |
| 69 | shared_libs: [ |
| 70 | "libbase", |
| 71 | "libcutils", |
| 72 | "liblog", |
| 73 | "libnetdutils", |
| 74 | ], |
| 75 | multilib: { |
| 76 | lib32: { |
| 77 | suffix: "32", |
| 78 | }, |
| 79 | lib64: { |
| 80 | suffix: "64", |
| 81 | }, |
| 82 | }, |
| 83 | } |