diff options
| -rw-r--r-- | libs/ultrahdr/Android.bp | 85 | ||||
| -rw-r--r-- | libs/ultrahdr/fuzzer/Android.bp | 72 | ||||
| -rw-r--r-- | libs/ultrahdr/tests/Android.bp | 51 |
3 files changed, 0 insertions, 208 deletions
diff --git a/libs/ultrahdr/Android.bp b/libs/ultrahdr/Android.bp deleted file mode 100644 index eda5ea4578..0000000000 --- a/libs/ultrahdr/Android.bp +++ /dev/null @@ -1,85 +0,0 @@ -// 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", - ], -} diff --git a/libs/ultrahdr/fuzzer/Android.bp b/libs/ultrahdr/fuzzer/Android.bp deleted file mode 100644 index 8d9132fd4d..0000000000 --- a/libs/ultrahdr/fuzzer/Android.bp +++ /dev/null @@ -1,72 +0,0 @@ -// 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", - ], -} diff --git a/libs/ultrahdr/tests/Android.bp b/libs/ultrahdr/tests/Android.bp deleted file mode 100644 index 00cc797591..0000000000 --- a/libs/ultrahdr/tests/Android.bp +++ /dev/null @@ -1,51 +0,0 @@ -// 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/*.*", - ], -} |