1// Copyright (C) 2009 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 15// The upstream source of these headers and map.txt is the 16// platform/libnativehelper project in the ART branch. Any changes here should 17// be synced here and vice versa. 18 19package { 20 default_applicable_licenses: [ 21 "system_extras_module_ndk_libs_libnativehelper_license", 22 ], 23} 24 25// Added automatically by a large-scale-change 26// See: http://go/android-license-faq 27license { 28 name: "system_extras_module_ndk_libs_libnativehelper_license", 29 visibility: [":__subpackages__"], 30 license_kinds: [ 31 "SPDX-license-identifier-Apache-2.0", 32 ], 33 license_text: [ 34 "NOTICE", 35 ], 36} 37 38ndk_headers { 39 name: "ndk_jni.h", 40 from: "include_jni", 41 to: "", 42 srcs: ["include_jni/jni.h"], 43 license: "NOTICE", 44} 45 46ndk_headers { 47 name: "libnativehelper_ndk_headers", 48 from: "include", 49 to: "", 50 srcs: ["include/android/*.h"], 51 license: "NOTICE", 52} 53 54ndk_library { 55 name: "libnativehelper", 56 symbol_file: "libnativehelper.map.txt", 57 first_version: "S", 58} 59