blob: 45eab00fb6327817455336f52e573d40e717d82c [file] [log] [blame]
Joe Onorato2927da92018-12-11 14:24:49 -08001/**
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
17filegroup {
18 name: "incidentcompanion_aidl",
19 srcs: [
20 "binder/android/os/IIncidentAuthListener.aidl",
21 "binder/android/os/IIncidentCompanion.aidl",
22 ],
23 path: "binder",
24}
25
26cc_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 ],
39 export_include_dirs: ["binder"],
40 cflags: [
41 "-Wall",
42 "-Werror",
43 "-Wno-missing-field-initializers",
44 "-Wno-unused-variable",
45 "-Wunused-parameter",
46 ],
47}
48