blob: 5d12d9948e31f9c41c66074ead1de7cb5dcd9e66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- chrome/browser/BUILD.gn.orig 2017-04-19 19:06:29 UTC
+++ chrome/browser/BUILD.gn
@@ -2219,7 +2219,7 @@ split_static_library("browser") {
deps += [ "//device/udev_linux" ]
}
- if (is_linux && !is_chromeos) {
+ if ((is_linux || is_bsd) && !is_chromeos) {
deps += [ "//third_party/speech-dispatcher" ]
}
@@ -3606,7 +3606,7 @@ split_static_library("browser") {
}
}
- if (is_linux) {
+ if (is_linux || is_bsd) {
if (use_aura) {
deps += [ "//build/linux:fontconfig" ]
if (use_dbus) {
|