blob: 22a04f5c0945faebf486f4e59c0607fab03eb06a [file] [log] [blame]
Remi NGUYEN VAN31022d62021-05-11 13:37:06 +00001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_base_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_base_license"],
8}
9
10cc_library_shared {
11 name: "libnetworkstatsfactorytestjni",
12
13 cflags: [
14 "-Wall",
15 "-Werror",
16 "-Wno-unused-parameter",
17 "-Wthread-safety",
18 ],
19
20 srcs: [
21 ":lib_networkStatsFactory_native",
22 "test_onload.cpp",
23 ],
24
25 shared_libs: [
26 "libbpf_android",
27 "liblog",
28 "libnativehelper",
29 "libnetdbpf",
30 "libnetdutils",
31 ],
32}