blob: c1a03a16a75408f2f7b9b2f08732c7716b1d20ca [file] [log] [blame]
Lais Andrade602ff962020-08-27 12:02:53 +00001// Copyright (C) 2020 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15cc_benchmark {
16 name: "libvibratorservice_benchmarks",
17 srcs: [
18 "VibratorHalControllerBenchmarks.cpp",
19 ],
20 shared_libs: [
21 "libbinder",
22 "libhidlbase",
23 "liblog",
24 "libutils",
25 "libvibratorservice",
26 "android.hardware.vibrator-cpp",
27 "android.hardware.vibrator@1.0",
28 "android.hardware.vibrator@1.1",
29 "android.hardware.vibrator@1.2",
30 "android.hardware.vibrator@1.3",
31 ],
32 cflags: [
33 "-Wall",
34 "-Werror",
35 "-Wextra",
36 ],
37}