| Index: webrtc/api/BUILD.gn
 | 
| diff --git a/webrtc/api/BUILD.gn b/webrtc/api/BUILD.gn
 | 
| index e838e7ed544e9fa8f64357ec8baed28a3c839244..3b93673604e40a2a05ed9e814ef57ddb8d278cd1 100644
 | 
| --- a/webrtc/api/BUILD.gn
 | 
| +++ b/webrtc/api/BUILD.gn
 | 
| @@ -30,6 +30,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",
 | 
|    ]
 | 
|  }
 | 
| @@ -44,6 +45,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",
 | 
| @@ -218,6 +220,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",
 | 
| @@ -331,6 +334,7 @@ if (rtc_include_tests) {
 | 
|  
 | 
|      deps = [
 | 
|        "//testing/gmock",
 | 
| +      "//webrtc/test:test_support",
 | 
|      ]
 | 
|    }
 | 
|  }
 | 
| 
 |