xref: /aosp_15_r20/frameworks/av/media/libstagefright/http/Android.bp (revision ec779b8e0859a360c3d303172224686826e6e0e1)
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_media_libstagefright_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["frameworks_av_media_libstagefright_license"],
8}
9
10cc_library_shared {
11    name: "libstagefright_http_support",
12
13    srcs: ["HTTPHelper.cpp"],
14
15    header_libs: [
16        "libstagefright_headers",
17    ],
18
19    shared_libs: [
20        "liblog",
21        "libutils",
22        "libandroid_runtime",
23        "libmedia",
24    ],
25
26    export_include_dirs: ["."],
27
28    cflags: [
29        "-Wno-multichar",
30        "-Werror",
31        "-Wall",
32    ],
33
34    sanitize: {
35        misc_undefined: [
36            "signed-integer-overflow",
37        ],
38        cfi: true,
39    },
40}
41