Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9333e35a authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "ultrahdr: Remove unused Android.bp of deprecated ultrahdr" into main

parents a75d99da 88bceb11
Loading
Loading
Loading
Loading

libs/ultrahdr/Android.bp

deleted100644 → 0
+0 −85
Original line number Diff line number Diff line
// Copyright 2022 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.

package {
    // See: http://go/android-license-faq
    default_applicable_licenses: [
        "frameworks_native_license",
        "adobe_hdr_gain_map_license",
    ],
}

cc_library {
    name: "libultrahdr-deprecated",
    enabled: false,
    host_supported: true,
    vendor_available: true,
    export_include_dirs: ["include"],
    local_include_dirs: ["include"],

    srcs: [
        "icc.cpp",
        "jpegr.cpp",
        "gainmapmath.cpp",
        "jpegrutils.cpp",
        "multipictureformat.cpp",
    ],

    shared_libs: [
        "libimage_io",
        "libjpeg",
        "libjpegencoder",
        "libjpegdecoder",
        "liblog",
        "libutils",
    ],
}

cc_library {
    name: "libjpegencoder-deprecated",
    enabled: false,
    host_supported: true,
    vendor_available: true,

    shared_libs: [
        "libjpeg",
        "liblog",
        "libutils",
    ],

    export_include_dirs: ["include"],

    srcs: [
        "jpegencoderhelper.cpp",
    ],
}

cc_library {
    name: "libjpegdecoder-deprecated",
    enabled: false,
    host_supported: true,
    vendor_available: true,

    shared_libs: [
        "libjpeg",
        "liblog",
        "libutils",
    ],

    export_include_dirs: ["include"],

    srcs: [
        "jpegdecoderhelper.cpp",
    ],
}

libs/ultrahdr/fuzzer/Android.bp

deleted100644 → 0
+0 −72
Original line number Diff line number Diff line
// Copyright 2023 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.

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

cc_defaults {
    name: "ultrahdr_fuzzer_defaults-deprecated",
    enabled: false,
    host_supported: true,
    shared_libs: [
        "libimage_io",
        "libjpeg",
    ],
    static_libs: [
        "libjpegdecoder",
        "libjpegencoder",
        "libultrahdr",
        "libutils",
        "liblog",
    ],
    target: {
        darwin: {
            enabled: false,
        },
    },
    fuzz_config: {
        cc: [
            "android-media-fuzzing-reports@google.com",
        ],
        description: "The fuzzers target the APIs of jpeg hdr",
        service_privilege: "constrained",
        users: "multi_user",
        fuzzed_code_usage: "future_version",
        vector: "local_no_privileges_required",
    },
}

cc_fuzz {
    name: "ultrahdr_enc_fuzzer-deprecated",
    enabled: false,
    defaults: ["ultrahdr_fuzzer_defaults"],
    srcs: [
        "ultrahdr_enc_fuzzer.cpp",
    ],
}

cc_fuzz {
    name: "ultrahdr_dec_fuzzer-deprecated",
    enabled: false,
    defaults: ["ultrahdr_fuzzer_defaults"],
    srcs: [
        "ultrahdr_dec_fuzzer.cpp",
    ],
}

libs/ultrahdr/tests/Android.bp

deleted100644 → 0
+0 −51
Original line number Diff line number Diff line
// Copyright 2022 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.

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

cc_test {
    name: "ultrahdr_unit_test-deprecated",
    enabled: false,
    test_suites: ["device-tests"],
    srcs: [
        "gainmapmath_test.cpp",
        "icchelper_test.cpp",
        "jpegr_test.cpp",
        "jpegencoderhelper_test.cpp",
        "jpegdecoderhelper_test.cpp",
    ],
    shared_libs: [
        "libimage_io",
        "libjpeg",
        "liblog",
    ],
    static_libs: [
        "libgmock",
        "libgtest",
        "libjpegdecoder",
        "libjpegencoder",
        "libultrahdr",
        "libutils",
    ],
    data: [
        "./data/*.*",
    ],
}