blob: 63411b969855e491a9ab4bd5b55309de9ba4715e [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",
Joe Onorato1c36d752019-03-17 18:26:43 -070038 "src/IncidentManager.cpp",
Joe Onorato2927da92018-12-11 14:24:49 -080039 ],
Joe Onorato1c36d752019-03-17 18:26:43 -070040 export_include_dirs: [
41 "binder",
42 "include",
43 ],
Joe Onorato2927da92018-12-11 14:24:49 -080044 cflags: [
45 "-Wall",
46 "-Werror",
47 "-Wno-missing-field-initializers",
48 "-Wno-unused-variable",
49 "-Wunused-parameter",
50 ],
51}
52