2019-02-05 11:26:32 -08:00
|
|
|
//
|
|
|
|
|
// Copyright (C) 2019 The Android Open Source Project
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
//
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
//
|
|
|
|
|
|
2021-02-23 14:26:20 -08:00
|
|
|
package {
|
|
|
|
|
// See: http://go/android-license-faq
|
|
|
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
|
|
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
|
|
|
|
// to get the below license kinds:
|
|
|
|
|
// SPDX-license-identifier-Apache-2.0
|
|
|
|
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-05 11:26:32 -08:00
|
|
|
cc_test {
|
|
|
|
|
name: "VtsHalInputClassifierV1_0TargetTest",
|
2023-04-20 18:50:03 -07:00
|
|
|
cpp_std: "c++20",
|
2019-02-05 11:26:32 -08:00
|
|
|
defaults: ["VtsHalTargetTestDefaults"],
|
2021-06-03 16:38:58 +00:00
|
|
|
srcs: [
|
|
|
|
|
":inputconstants_aidl",
|
|
|
|
|
"VtsHalInputClassifierV1_0TargetTest.cpp",
|
|
|
|
|
],
|
2021-12-22 01:28:05 -08:00
|
|
|
header_libs: [
|
|
|
|
|
"jni_headers",
|
|
|
|
|
"libbinder_headers",
|
|
|
|
|
],
|
2019-02-05 11:26:32 -08:00
|
|
|
static_libs: [
|
|
|
|
|
"android.hardware.input.classifier@1.0",
|
|
|
|
|
"android.hardware.input.common@1.0",
|
2020-07-13 12:53:44 -07:00
|
|
|
"libui-types",
|
2019-02-05 11:26:32 -08:00
|
|
|
],
|
2020-03-30 17:17:21 -07:00
|
|
|
test_suites: [
|
|
|
|
|
"general-tests",
|
2020-03-26 00:06:39 -07:00
|
|
|
"vts",
|
2020-03-30 17:17:21 -07:00
|
|
|
],
|
2019-02-05 11:26:32 -08:00
|
|
|
}
|