aboutsummaryrefslogtreecommitdiff
path: root/fuzz/Android.bp
blob: a8d552b1f663116f3d4ca7d3e9e61b39b521b72e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "external_libyuv_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-BSD
    default_applicable_licenses: ["external_libyuv_license"],
}

cc_fuzz {
    name: "libyuv_mjpeg_dec_fuzz",
    host_supported: false,
    srcs: [
        "mjpeg_dec_fuzz.cc",
    ],
    static_libs: [
        "libyuv",
    ],

    shared_libs: [
        "libjpeg",
    ],
}