• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2022 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package {
16    // See: http://go/android-license-faq
17    default_applicable_licenses: [
18        "frameworks_native_license",
19        "adobe_hdr_gain_map_license",
20    ],
21}
22
23cc_library {
24    name: "libultrahdr-deprecated",
25    enabled: false,
26    host_supported: true,
27    vendor_available: true,
28    export_include_dirs: ["include"],
29    local_include_dirs: ["include"],
30
31    srcs: [
32        "icc.cpp",
33        "jpegr.cpp",
34        "gainmapmath.cpp",
35        "jpegrutils.cpp",
36        "multipictureformat.cpp",
37    ],
38
39    shared_libs: [
40        "libimage_io",
41        "libjpeg",
42        "libjpegencoder",
43        "libjpegdecoder",
44        "liblog",
45        "libutils",
46    ],
47}
48
49cc_library {
50    name: "libjpegencoder-deprecated",
51    enabled: false,
52    host_supported: true,
53    vendor_available: true,
54
55    shared_libs: [
56        "libjpeg",
57        "liblog",
58        "libutils",
59    ],
60
61    export_include_dirs: ["include"],
62
63    srcs: [
64        "jpegencoderhelper.cpp",
65    ],
66}
67
68cc_library {
69    name: "libjpegdecoder-deprecated",
70    enabled: false,
71    host_supported: true,
72    vendor_available: true,
73
74    shared_libs: [
75        "libjpeg",
76        "liblog",
77        "libutils",
78    ],
79
80    export_include_dirs: ["include"],
81
82    srcs: [
83        "jpegdecoderhelper.cpp",
84    ],
85}
86