blob: d6db20261da43c943e9bdb62e4fe38bbd740f8bc [file] [log] [blame]
Sungtak Lee9ec33562018-09-04 15:22:46 -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
Bob Badour948e6aa2021-02-12 21:02:31 -080017package {
18 // See: http://go/android-license-faq
19 // A large-scale-change added 'default_applicable_licenses' to import
20 // all of the 'license_kinds' from "frameworks_av_license"
21 // to get the below license kinds:
22 // SPDX-license-identifier-Apache-2.0
23 default_applicable_licenses: ["frameworks_av_license"],
24}
25
Sungtak Lee9ec33562018-09-04 15:22:46 -070026cc_test {
27 name: "VtsVndkHidlBufferpoolV2_0TargetSingleTest",
28 defaults: ["VtsHalTargetTestDefaults"],
29 srcs: [
30 "allocator.cpp",
31 "single.cpp",
32 ],
33 static_libs: [
34 "android.hardware.media.bufferpool@2.0",
35 "libcutils",
36 "libstagefright_bufferpool@2.0",
37 ],
38 shared_libs: [
39 "libfmq",
40 ],
41 compile_multilib: "both",
42}
43
44cc_test {
45 name: "VtsVndkHidlBufferpoolV2_0TargetMultiTest",
46 defaults: ["VtsHalTargetTestDefaults"],
47 srcs: [
48 "allocator.cpp",
49 "multi.cpp",
50 ],
51 static_libs: [
52 "android.hardware.media.bufferpool@2.0",
53 "libcutils",
54 "libstagefright_bufferpool@2.0",
55 ],
56 shared_libs: [
57 "libfmq",
58 ],
59 compile_multilib: "both",
60}