| Index: webrtc/api/BUILD.gn
|
| diff --git a/webrtc/api/BUILD.gn b/webrtc/api/BUILD.gn
|
| index b2f28ab4e2769faaf4963bb264a139eaf08aa2e6..df378f065f70b92726313fd2e1b171d9f043006c 100644
|
| --- a/webrtc/api/BUILD.gn
|
| +++ b/webrtc/api/BUILD.gn
|
| @@ -40,6 +40,7 @@ rtc_source_set("call_api") {
|
| ":transport_api",
|
| "..:webrtc_common",
|
| "../base:rtc_base_approved",
|
| + "../modules/audio_coding:audio_decoder_factory_interface",
|
| "../modules/audio_coding:audio_encoder_interface",
|
| ]
|
| }
|
| @@ -54,6 +55,7 @@ config("libjingle_peerconnection_warnings_config") {
|
| }
|
|
|
| rtc_static_library("libjingle_peerconnection") {
|
| + check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828)
|
| cflags = []
|
| sources = [
|
| "audiotrack.cc",
|
| @@ -413,6 +415,7 @@ if (rtc_include_tests) {
|
| }
|
|
|
| rtc_test("peerconnection_unittests") {
|
| + check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828)
|
| testonly = true
|
| sources = [
|
| "datachannel_unittest.cc",
|
| @@ -526,6 +529,7 @@ if (rtc_include_tests) {
|
|
|
| deps = [
|
| "//testing/gmock",
|
| + "//webrtc/test:test_support",
|
| ]
|
| }
|
| }
|
|
|