1// Copyright (C) 2015 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_defaults { 16 name: "libcap_defaults", 17 cflags: [ 18 "-Wall", 19 "-Werror", 20 "-Wno-unused-parameter", 21 "-Wno-unused-result", 22 "-Wno-tautological-compare", 23 ], 24} 25 26cc_library { 27 name: "libcap", 28 host_supported: true, 29 vendor_available: true, 30 vndk: { 31 enabled: true, 32 }, 33 defaults: ["libcap_defaults"], 34 35 srcs: [ 36 "libcap/cap_alloc.c", 37 "libcap/cap_extint.c", 38 "libcap/cap_file.c", 39 "libcap/cap_flag.c", 40 "libcap/cap_proc.c", 41 "libcap/cap_text.c", 42 ], 43 44 local_include_dirs: ["libcap/include"], 45 export_include_dirs: ["libcap/include"], 46 47 target: { 48 darwin: { 49 enabled: false, 50 }, 51 linux_bionic: { 52 enabled: true, 53 }, 54 }, 55} 56 57cc_binary { 58 name: "getcap", 59 60 srcs: ["progs/getcap.c"], 61 62 defaults: ["libcap_defaults"], 63 64 static_libs: [ 65 "libcap", 66 ], 67} 68 69cc_binary { 70 name: "setcap", 71 72 srcs: ["progs/setcap.c"], 73 74 defaults: ["libcap_defaults"], 75 76 static_libs: [ 77 "libcap", 78 ], 79} 80