blob: d398426f95ae0edf0cb8eaf5a899f81cb777532f [file] [log] [blame]
Dan Willemsenfa32e292017-10-19 22:18:23 -07001//
2// Copyright © 2011-2012 Intel Corporation
3//
4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"),
6// to deal in the Software without restriction, including without limitation
7// the rights to use, copy, modify, merge, publish, distribute, sublicense,
8// and/or sell copies of the Software, and to permit persons to whom the
9// Software is furnished to do so, subject to the following conditions:
10//
11// The above copyright notice and this permission notice (including the next
12// paragraph) shall be included in all copies or substantial portions of the
13// Software.
14//
15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21// IN THE SOFTWARE.
22//
23
24subdirs = ["*"]
25build = ["Android.sources.bp"]
26
27cc_defaults {
28 name: "libdrm_defaults",
29 cflags: [
30 // XXX: Consider moving these to config.h analogous to autoconf.
31 "-DMAJOR_IN_SYSMACROS=1",
32 "-DHAVE_VISIBILITY=1",
33 "-DHAVE_LIBDRM_ATOMIC_PRIMITIVES=1",
34
35 "-Wall",
36 "-Werror",
Elliott Hughes267e2d82018-01-11 14:09:24 -080037 "-Wno-deprecated-declarations",
Dan Willemsenfa32e292017-10-19 22:18:23 -070038 "-Wno-format",
39 "-Wno-gnu-variable-sized-type-not-at-end",
Jason Macnakadc4cef2019-12-02 22:56:55 -080040 "-Wno-implicit-function-declaration",
41 "-Wno-int-conversion",
42 "-Wno-missing-field-initializers",
Dan Willemsenfa32e292017-10-19 22:18:23 -070043 "-Wno-pointer-arith",
44 "-Wno-unused-parameter",
45 "-Wno-unused-variable",
Dan Willemsenfa32e292017-10-19 22:18:23 -070046 ],
Inseob Kim06b698c2020-06-11 14:05:17 +090047 export_system_include_dirs: ["."],
Dan Willemsenfa32e292017-10-19 22:18:23 -070048}
49
Jason Macnaka4a83ba2020-11-16 09:58:07 -080050cc_library_headers {
51 name: "libdrm_headers",
52 vendor_available: true,
53 host_supported: true,
54 defaults: ["libdrm_defaults"],
55 export_include_dirs: ["include/drm", "android"],
56}
57
Dan Willemsenfa32e292017-10-19 22:18:23 -070058// Library for the device
59cc_library {
60 name: "libdrm",
Jerry Zhangd9aac042018-07-17 12:17:19 -070061 recovery_available: true,
Dan Willemsenfa32e292017-10-19 22:18:23 -070062 vendor_available: true,
Jason Macnakadc4cef2019-12-02 22:56:55 -080063 host_supported: true,
Dan Willemsenfa32e292017-10-19 22:18:23 -070064 defaults: [
65 "libdrm_defaults",
66 "libdrm_sources",
67 ],
68
John Stultz915c5fa2018-04-13 16:26:43 -070069 export_include_dirs: ["include/drm", "android"],
Dan Willemsenfa32e292017-10-19 22:18:23 -070070
71 cflags: [
72 "-Wno-enum-conversion",
73 "-Wno-pointer-arith",
74 "-Wno-sign-compare",
75 "-Wno-tautological-compare",
76 ],
77}