blob: a5aaea4434ebae4803c5748d4ec0b61f0da55702 [file] [log] [blame]
// Copyright (C) 2012 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.
//
//------------------------------------------------------------------------------
// Builds libctscodecutils_jni.so
//
package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "cts_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
// legacy_unencumbered
default_applicable_licenses: ["cts_license"],
}
cc_test_library {
name: "libctscodecutils_jni",
srcs: [
"codec-utils-jni.cpp",
"md5_utils.cpp",
],
shared_libs: [
"libnativehelper_compat_libc++",
"liblog",
],
header_libs: ["liblog_headers"],
// this test suite will run on sdk 29 as part of MTS, make sure it's compatible
// (revisit if/when we add features to this library that require newer sdk.
sdk_version: "29",
cflags: [
"-Werror",
"-Wall",
"-DEGL_EGLEXT_PROTOTYPES",
],
stl: "libc++_static",
gtest: false,
}
//------------------------------------------------------------------------------
// Builds libctsmediacodec_jni.so
//
cc_test_library {
name: "libctsmediacodec_jni",
srcs: [
"native-media-jni.cpp",
"native_media_utils.cpp",
"native_media_decoder_source.cpp",
],
shared_libs: [
"libandroid",
"libnativehelper_compat_libc++",
"liblog",
"libmediandk",
"libEGL",
],
header_libs: ["liblog_headers"],
stl: "libc++_static",
cflags: [
"-Werror",
"-Wall",
"-DEGL_EGLEXT_PROTOTYPES",
],
gtest: false,
// this test suite will run on sdk 29 as part of MTS, make sure it's compatible
// (revisit if/when we add features to this library that require newer sdk.
sdk_version: "29",
}