blob: be2abf2c5954071c9df93075b9ccc22b46bd66e4 [file] [log] [blame]
Harish Mahendrakarcb528e22021-03-03 21:30:35 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_av_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_av_license"],
8}
9
10cc_defaults {
11 name: "C2SoftCodecTest-defaults",
Lajos Molnar99d4d112022-01-28 12:42:05 -080012 defaults: [ "libcodec2-static-defaults" ],
Harish Mahendrakarcb528e22021-03-03 21:30:35 -080013 gtest: true,
14 host_supported: false,
15 srcs: [
16 "C2SoftCodecTest.cpp",
17 ],
18
Harish Mahendrakarcb528e22021-03-03 21:30:35 -080019 cflags: [
20 "-Wall",
21 "-Werror",
22 ],
23}
24
25cc_test {
26 name: "C2SoftMpeg4DecTest",
27 defaults: ["C2SoftCodecTest-defaults"],
28
29 static_libs: [
30 "libstagefright_m4vh263dec",
31 "libcodec2_soft_mpeg4dec",
32 ],
33
34 test_suites: [
35 "general-tests",
36 ],
37}