9187a6460f
Submitted by: clutton <clutton@zoho.com> Reviewed by: cpm, rene Obtained from: https://github.com/paranormal/ MFH: 2016Q4 Security: https://vuxml.freebsd.org/freebsd/769ba449-79e1-11e6-bf75-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/653a8059-7c49-11e6-9242-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/9c135c7e-9fa4-11e6-a265-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/9118961b-9fa5-11e6-a265-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/ae9cb9b8-a203-11e6-a265-3065ec8fd3ec.html Security: https://vuxml.freebsd.org/freebsd/a3473f5a-a739-11e6-afaa-e8e0b747a45a.html Differential Revision: https://reviews.freebsd.org/D8517
25 lines
721 B
Text
25 lines
721 B
Text
--- media/audio/BUILD.gn.orig 2016-08-03 22:02:19.000000000 +0300
|
|
+++ media/audio/BUILD.gn 2016-09-25 15:11:18.731892000 +0300
|
|
@@ -202,7 +202,7 @@
|
|
deps += [ "//media/base/android:media_jni_headers" ]
|
|
}
|
|
|
|
- if (is_linux) {
|
|
+ if (is_linux || is_bsd) {
|
|
sources += [ "linux/audio_manager_linux.cc" ]
|
|
}
|
|
|
|
@@ -251,10 +251,12 @@
|
|
configs += [ ":libpulse" ]
|
|
} else {
|
|
# TODO(ajwong): Technically, this dl should go in the action.
|
|
- libs += [ "dl" ]
|
|
deps += [ ":pulse_generate_stubs" ]
|
|
sources += get_target_outputs(":pulse_generate_stubs")
|
|
}
|
|
+ if (is_linux) {
|
|
+ libs += [ "dl" ]
|
|
+ }
|
|
}
|
|
|
|
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
|