xref: /aosp_15_r20/external/aac/tests/AacDecBenchmark/Android.bp (revision e54365361535b070c2db7374cec45c159c7d0e7a)
1*e5436536SAndroid Build Coastguard Worker// Copyright (C) 2024 The Android Open Source Project
2*e5436536SAndroid Build Coastguard Worker//
3*e5436536SAndroid Build Coastguard Worker// Licensed under the Apache License, Version 2.0 (the "License");
4*e5436536SAndroid Build Coastguard Worker// you may not use this file except in compliance with the License.
5*e5436536SAndroid Build Coastguard Worker// You may obtain a copy of the License at
6*e5436536SAndroid Build Coastguard Worker//
7*e5436536SAndroid Build Coastguard Worker//      http://www.apache.org/licenses/LICENSE-2.0
8*e5436536SAndroid Build Coastguard Worker//
9*e5436536SAndroid Build Coastguard Worker// Unless required by applicable law or agreed to in writing, software
10*e5436536SAndroid Build Coastguard Worker// distributed under the License is distributed on an "AS IS" BASIS,
11*e5436536SAndroid Build Coastguard Worker// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12*e5436536SAndroid Build Coastguard Worker// See the License for the specific language governing permissions and
13*e5436536SAndroid Build Coastguard Worker// limitations under the License.
14*e5436536SAndroid Build Coastguard Worker
15*e5436536SAndroid Build Coastguard Workerpackage {
16*e5436536SAndroid Build Coastguard Worker    // See: http://go/android-license-faq
17*e5436536SAndroid Build Coastguard Worker    default_team: "trendy_team_android_media_codec_framework",
18*e5436536SAndroid Build Coastguard Worker    default_applicable_licenses: ["external_aac_license"],
19*e5436536SAndroid Build Coastguard Worker}
20*e5436536SAndroid Build Coastguard Worker
21*e5436536SAndroid Build Coastguard Workercc_benchmark {
22*e5436536SAndroid Build Coastguard Worker    name: "AacDecBenchmark",
23*e5436536SAndroid Build Coastguard Worker    host_supported: true,
24*e5436536SAndroid Build Coastguard Worker    srcs: ["AacDecBenchmark.cpp"],
25*e5436536SAndroid Build Coastguard Worker    shared_libs: [
26*e5436536SAndroid Build Coastguard Worker        "liblog",
27*e5436536SAndroid Build Coastguard Worker    ],
28*e5436536SAndroid Build Coastguard Worker    static_libs: [
29*e5436536SAndroid Build Coastguard Worker        "libFraunhoferAAC",
30*e5436536SAndroid Build Coastguard Worker        "libgoogle-benchmark",
31*e5436536SAndroid Build Coastguard Worker    ],
32*e5436536SAndroid Build Coastguard Worker    test_suites: ["device-tests"],
33*e5436536SAndroid Build Coastguard Worker}
34