mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 10:44:41 +00:00
This test now statically links to libs not guaranteed to be on the device. Bug: 64040096 Test: vts-tradefed run commandAndExit vts --skip-all-system-status-check --primary-abi-only --skip-preconditions --module VtsHalAudioEffectV2_0Target Test: vts-tradefed run commandAndExit vts --skip-all-system-status-check --primary-abi-only --skip-preconditions --module VtsHalAudioV2_0Target Change-Id: I331d7e4abdf7e520df6d508a8059b6358ad4398f
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
//
|
|
// Copyright (C) 2017 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.
|
|
//
|
|
|
|
cc_test {
|
|
name: "VtsHalAudioV2_0TargetTest",
|
|
defaults: ["VtsHalTargetTestDefaults"],
|
|
srcs: [
|
|
"AudioPrimaryHidlHalTest.cpp",
|
|
"ValidateAudioConfiguration.cpp"
|
|
],
|
|
static_libs: [
|
|
"android.hardware.audio.common.test.utility",
|
|
"android.hardware.audio@2.0",
|
|
"android.hardware.audio.common@2.0",
|
|
"libxml2",
|
|
],
|
|
shared_libs: [
|
|
"libicuuc",
|
|
],
|
|
}
|