xref: /aosp_15_r20/frameworks/av/media/codec2/tests/aidl/Android.bp (revision ec779b8e0859a360c3d303172224686826e6e0e1)
1/*
2 * Copyright (C) 2023 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
17package {
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
26cc_test {
27    name: "c2aidl_gtracker_test",
28    test_suites: ["device-tests"],
29    defaults: [
30        "libcodec2-aidl-client-defaults",
31    ],
32
33    header_libs: [
34        "libcodec2_client_headers",
35        "libcodec2_internal",
36        "libcodec2_vndk_headers",
37    ],
38
39    srcs: [
40        "GraphicsTracker_test.cpp",
41    ],
42
43    shared_libs: [
44        "libbinder",
45        "libcodec2_client",
46        "libgui",
47        "libnativewindow",
48        "libui",
49    ],
50}
51