Home | History | Annotate | Download | only in incidentcompanion
      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 filegroup {
     18     name: "incidentcompanion_aidl",
     19     srcs: [
     20         "binder/android/os/IIncidentAuthListener.aidl",
     21         "binder/android/os/IIncidentCompanion.aidl",
     22     ],
     23     path: "binder",
     24 }
     25 
     26 cc_library_static {
     27     name: "libincidentcompanion",
     28     shared_libs: [
     29         "libbinder",
     30         "libutils",
     31     ],
     32     aidl: {
     33         local_include_dirs: ["binder"],
     34         export_aidl_headers: true,
     35     },
     36     srcs: [
     37         ":incidentcompanion_aidl",
     38         "src/IncidentManager.cpp",
     39     ],
     40     export_include_dirs: [
     41         "binder",
     42         "include",
     43     ],
     44     cflags: [
     45         "-Wall",
     46         "-Werror",
     47         "-Wno-missing-field-initializers",
     48         "-Wno-unused-variable",
     49         "-Wunused-parameter",
     50     ],
     51 }
     52 
     53