blob: 8c26985d5145a1e23ea263ade2baa0fbe7f82d6c [file] [log] [blame]
Tomasz Wasilczyk1b2c6ef2019-07-19 13:57:42 -07001//
2// Copyright (C) 2019 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
17cc_binary {
18 name: "canhalctrl",
19 defaults: ["android.hardware.automotive.can@defaults"],
20 srcs: [
21 "canhalctrl.cpp",
22 ],
23 shared_libs: [
24 "android.hardware.automotive.can@1.0",
25 "libhidlbase",
26 "libhidltransport",
27 ],
28 header_libs: [
29 "android.hardware.automotive.can@hidl-utils-lib",
30 ],
31}
32
33cc_binary {
34 name: "canhaldump",
35 defaults: ["android.hardware.automotive.can@defaults"],
36 srcs: [
37 "canhaldump.cpp",
38 ],
39 shared_libs: [
40 "android.hardware.automotive.can@1.0",
41 "libhidlbase",
42 "libhidltransport",
43 ],
44 header_libs: [
45 "android.hardware.automotive.can@hidl-utils-lib",
46 ],
47}
48
49cc_binary {
50 name: "canhalsend",
51 defaults: ["android.hardware.automotive.can@defaults"],
52 srcs: [
53 "canhalsend.cpp",
54 ],
55 shared_libs: [
56 "android.hardware.automotive.can@1.0",
57 "libhidlbase",
58 "libhidltransport",
59 ],
60}