1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
| // Use of this source code is governed by a BSD-style license that can be
| // found in the LICENSE file.
|
| cc_defaults {
| name: "gralloc.minigbm_intel_defaults",
| cflags: ["-DDRV_I915"],
| }
|
| cc_defaults {
| name: "gralloc.minigbm_meson_defaults",
| cflags: ["-DDRV_MESON"],
| }
|
| cc_defaults {
| name: "gralloc.minigbm_defaults",
|
| srcs: [
| "amdgpu.c",
| "drv.c",
| "evdi.c",
| "exynos.c",
| "helpers_array.c",
| "helpers.c",
| "i915.c",
| "marvell.c",
| "mediatek.c",
| "meson.c",
| "msm.c",
| "nouveau.c",
| "radeon.c",
| "rockchip.c",
| "tegra.c",
| "udl.c",
| "vc4.c",
| "vgem.c",
| "virtio_gpu.c",
|
| "cros_gralloc/cros_gralloc_buffer.cc",
| "cros_gralloc/cros_gralloc_driver.cc",
| "cros_gralloc/cros_gralloc_helpers.cc",
| "cros_gralloc/gralloc0/gralloc0.cc",
| ],
|
| cflags: [
| "-D_GNU_SOURCE=1",
| "-D_FILE_OFFSET_BITS=64",
| "-Wall",
| "-Wsign-compare",
| "-Wpointer-arith",
| "-Wcast-qual",
| "-Wcast-align",
| "-Wno-unused-parameter",
| ],
| cppflags: ["-std=c++14"],
|
| // The preferred path for vendor HALs is /vendor/lib/hw
| vendor: true,
| relative_install_path: "hw",
|
| header_libs: [
| "libhardware_headers",
| "libnativebase_headers",
| "libsystem_headers",
| ],
|
| shared_libs: [
| "libcutils",
| "libdrm",
|
| "libnativewindow",
| "libsync",
| "liblog",
| ],
|
| static_libs: ["libarect"],
| }
|
| cc_library_shared {
| name: "gralloc.minigbm",
| defaults: ["gralloc.minigbm_defaults"],
| }
|
| cc_library_shared {
| name: "gralloc.minigbm_intel",
| defaults: [
| "gralloc.minigbm_defaults",
| "gralloc.minigbm_intel_defaults",
| ],
| enabled: false,
| arch: {
| x86: {
| enabled: true,
| },
| x86_64: {
| enabled: true,
| },
| },
| }
|
| cc_library_shared {
| name: "gralloc.minigbm_meson",
| defaults: [
| "gralloc.minigbm_defaults",
| "gralloc.minigbm_meson_defaults",
| ],
| }
|
| cc_library_shared {
| name: "libminigbm",
| defaults: ["gralloc.minigbm_defaults"],
| shared_libs: ["liblog"],
| static_libs: ["libdrm"],
|
| srcs: [
| "gbm.c",
| "gbm_helpers.c",
| ],
|
| export_include_dirs: ["."],
| }
|
|