Home | History | Annotate | Download | only in ndk
      1 /*
      2  * Copyright (C) 2018 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  */
     16 
     17 cc_library {
     18     name: "libbinder_ndk",
     19     vendor_available: true,
     20 
     21     export_include_dirs: [
     22         "include_ndk",
     23         "include_apex",
     24     ],
     25 
     26     cflags: [
     27         "-Wall",
     28         "-Wextra",
     29         "-Werror",
     30     ],
     31 
     32     srcs: [
     33         "ibinder.cpp",
     34         "ibinder_jni.cpp",
     35         "parcel.cpp",
     36         "process.cpp",
     37         "status.cpp",
     38         "service_manager.cpp",
     39     ],
     40 
     41     shared_libs: [
     42         "libandroid_runtime_lazy",
     43         "libbase",
     44         "libbinder",
     45         "libutils",
     46     ],
     47 
     48     header_libs: [
     49         "jni_headers",
     50     ],
     51     export_header_lib_headers: [
     52         "jni_headers",
     53     ],
     54 
     55     version_script: "libbinder_ndk.map.txt",
     56     stubs: {
     57         symbol_file: "libbinder_ndk.map.txt",
     58         versions: ["29"],
     59     },
     60 }
     61 
     62 ndk_headers {
     63     name: "libbinder_ndk_headers",
     64     from: "include_ndk/android",
     65     to: "android",
     66     srcs: [
     67         "include_ndk/android/*.h",
     68     ],
     69     license: "NOTICE",
     70 }
     71 
     72 ndk_library {
     73     name: "libbinder_ndk",
     74     symbol_file: "libbinder_ndk.map.txt",
     75     first_version: "29",
     76 }
     77