blob: 8da554aa4042aa14931024589d75694253a2a061 [file] [log] [blame]
Brian Stackeb755f52018-09-26 14:53:25 -07001//
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
17cc_library_static {
18 name: "VtsHalSensorsTargetTestUtils",
Brian Duddie56d64fa2019-06-19 16:23:02 -070019 cflags: ["-DLOG_TAG=\"sensors_hidl_hal_test\""],
Brian Stackeb755f52018-09-26 14:53:25 -070020 srcs: [
21 "GrallocWrapper.cpp",
Brian Stackbc5a39b2018-09-26 16:17:33 -070022 "SensorsHidlEnvironmentBase.cpp",
Brian Stack085f5052018-10-09 11:07:06 -070023 "SensorsHidlTestBase.cpp",
Brian Stack0c102a92018-09-25 14:42:57 -070024 "SensorsTestSharedMemory.cpp",
Brian Stackeb755f52018-09-26 14:53:25 -070025 ],
26 export_include_dirs: [
27 "include",
28 ],
29 local_include_dirs: [
30 "include/sensors-vts-utils",
31 ],
32 static_libs: [
33 "android.hardware.graphics.allocator@2.0",
34 "android.hardware.graphics.mapper@2.0",
Brian Stackbc5a39b2018-09-26 16:17:33 -070035 "android.hardware.sensors@1.0",
36 "VtsHalHidlTargetTestBase",
Brian Stackeb755f52018-09-26 14:53:25 -070037 ],
38}