blob: 7f37f611c7fa8530414a31a0ff325b9e7b0784a8 [file] [log] [blame]
Dichen Zhang85b37562022-10-11 11:08:28 -07001// 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 // A large-scale-change added 'default_applicable_licenses' to import
18 // all of the 'license_kinds' from "frameworks_native_license"
19 // to get the below license kinds:
20 // SPDX-license-identifier-Apache-2.0
21 default_applicable_licenses: ["frameworks_native_license"],
22}
23
24cc_test {
25 name: "libjpegrecoverymap_test",
26 test_suites: ["device-tests"],
27 srcs: [
28 "recoverymap_test.cpp",
29 ],
30 static_libs: [
31 "libjpegrecoverymap",
32 ],
Dichen Zhang4a66b3c2022-10-19 18:04:47 +000033}
34
35cc_test {
36 name: "libjpegencoder_test",
37 test_suites: ["device-tests"],
38 srcs: [
39 "jpegencoder_test.cpp",
40 ],
41 shared_libs: [
42 "libjpeg",
43 "liblog",
44 ],
45 static_libs: [
46 "libjpegencoder",
47 "libgtest",
48 ],
Dichen Zhang0d12ba82022-10-19 20:44:51 +000049}
50
51cc_test {
52 name: "libjpegdecoder_test",
53 test_suites: ["device-tests"],
54 srcs: [
55 "jpegdecoder_test.cpp",
56 ],
57 shared_libs: [
58 "libjpeg",
59 "liblog",
60 ],
61 static_libs: [
62 "libjpegdecoder",
63 "libgtest",
64 ],
Dichen Zhang85b37562022-10-11 11:08:28 -070065}