• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
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_library {
11    name: "libcodec2_soft_mpeg2dec",
12    defaults: [
13        "libcodec2_soft-defaults",
14        "libcodec2_soft_sanitize_signed-defaults",
15    ],
16
17    srcs: ["C2SoftMpeg2Dec.cpp"],
18
19    static_libs: ["libmpeg2dec"],
20
21    include_dirs: [
22        "external/libmpeg2/decoder",
23        "external/libmpeg2/common",
24    ],
25}
26