blob: ecfbe17afe6f2dfe8b63ec1b0d1771f8937f34a5 [file] [log] [blame]
S Vasudev Prasadd064e172020-05-11 13:10:16 +05301/*
2 * Copyright (C) 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore
17 */
18
19cc_defaults {
20 name: "C2Fuzzer-defaults",
21
22 srcs: [
23 "C2Fuzzer.cpp",
24 ],
25
26 static_libs: [
27 "liblog",
28 "libion",
29 "libfmq",
30 "libbase",
31 "libutils",
32 "libcutils",
33 "libcodec2",
34 "libhidlbase",
35 "libdmabufheap",
36 "libcodec2_vndk",
37 "libnativewindow",
38 "libcodec2_soft_common",
39 "libsfplugin_ccodec_utils",
40 "libstagefright_foundation",
41 "libstagefright_bufferpool@2.0.1",
42 "android.hardware.graphics.mapper@2.0",
43 "android.hardware.graphics.mapper@3.0",
44 "android.hardware.media.bufferpool@2.0",
45 "android.hardware.graphics.allocator@2.0",
46 "android.hardware.graphics.allocator@3.0",
47 "android.hardware.graphics.bufferqueue@2.0",
48 ],
49
50 shared_libs: [
51 "libui",
52 "libdl",
53 "libbinder",
54 "libhardware",
55 "libvndksupport",
56 "libprocessgroup",
57 ],
58
59 cflags: [
60 "-Wall",
61 "-Werror",
62 ],
63}