blob: 16b6fde17808d999558d0428e63c01c322366a31 [file] [log] [blame]
Yu Shan00c39eb2021-09-09 14:21:02 -07001/*
2 * Copyright (C) 2021 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
17package {
18 default_applicable_licenses: ["Android-Apache-2.0"],
19}
20
21cc_defaults {
22 name: "VehicleHalDefaults",
23 static_libs: [
Yu Shan5b320fb2022-01-21 20:02:16 -080024 "android-automotive-large-parcelable-vendor-lib",
Jiyong Parkbc6c0e92021-10-12 16:36:54 +090025 "android.hardware.automotive.vehicle-V1-ndk",
Yu Shan3d8595e2021-09-29 15:48:33 -070026 "libmath",
Yu Shan00c39eb2021-09-09 14:21:02 -070027 ],
28 shared_libs: [
29 "libbase",
30 "liblog",
31 "libutils",
32 ],
33 cflags: [
34 "-Wall",
35 "-Wextra",
36 "-Werror",
Yu Shan81fbbea2021-09-16 19:44:55 -070037 "-Wthread-safety",
Yu Shan00c39eb2021-09-09 14:21:02 -070038 ],
Yu Shan5b320fb2022-01-21 20:02:16 -080039 defaults: [
40 "android-automotive-large-parcelable-defaults",
41 ],
Yu Shan00c39eb2021-09-09 14:21:02 -070042}