blob: 3953aeb701549f1e1b0aa9c11ffc171cc8eb9526 [file] [log] [blame]
Baligh Uddin6a41dd42020-11-04 04:21:14 +00001// Copyright (C) 2013 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
15cc_library_shared {
16 name: "libnativedns_jni",
17
18 srcs: ["NativeDnsJni.c"],
19 sdk_version: "current",
20
21 shared_libs: [
22 "libnativehelper_compat_libc++",
23 "liblog",
24 ],
25 stl: "libc++_static",
26
27 cflags: [
28 "-Wall",
29 "-Werror",
30 "-Wno-unused-parameter",
31 ],
32
33}
34
35cc_library_shared {
36 name: "libnativemultinetwork_jni",
37
38 srcs: ["NativeMultinetworkJni.cpp"],
39 sdk_version: "current",
40 cflags: [
41 "-Wall",
42 "-Werror",
43 "-Wno-format",
44 ],
45 shared_libs: [
46 "libandroid",
47 "libnativehelper_compat_libc++",
48 "liblog",
49 ],
50 stl: "libc++_static",
51}