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
|
--- third_party/angle/BUILD.gn.orig 2024-04-19 13:02:56 UTC
+++ third_party/angle/BUILD.gn
@@ -335,7 +335,6 @@ config("extra_warnings") {
"-Wtautological-type-limit-compare",
"-Wundefined-reinterpret-cast",
"-Wunneeded-internal-declaration",
- "-Wunused-but-set-variable",
"-Wsuggest-destructor-override",
"-Wsuggest-override",
@@ -506,7 +505,7 @@ template("angle_common_lib") {
all_dependent_configs = [ ":angle_disable_pool_alloc" ]
}
- if (is_linux || is_chromeos) {
+ if ((is_linux || is_chromeos) && !is_bsd) {
libs = [ "dl" ]
}
@@ -661,6 +660,9 @@ angle_static_library("angle_gpu_info_util") {
"Xi",
"Xext",
]
+ if (is_bsd) {
+ libs += [ "GL" ]
+ }
}
if (angle_use_wayland && angle_has_build) {
|