From 6697278c8f26e930929e69581a35f9e414eb0a69 Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Thu, 12 Oct 2017 09:42:07 +0200 Subject: [PATCH] Fix Gn untracked headers in webrtc/p2p. This CL is the same CL we had at https://codereview.webrtc.org/3016513002/. Since we cannot land it with Rietveld anymore let's move the discussion to Gerrit. BUG=webrtc:7646 CQ_INCLUDE_TRYBOTS=master.internal.tryserver.corp.webrtc:linux_internal No-Try: True Change-Id: I442660e6dc71612d6bbcf73764bd4c6f65fcb760 Reviewed-on: https://webrtc-review.googlesource.com/7982 Commit-Queue: Mirko Bonadei Reviewed-by: Henrik Kjellander Cr-Commit-Position: refs/heads/master@{#20257} --- p2p/BUILD.gn | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/p2p/BUILD.gn b/p2p/BUILD.gn index 9f655a7ddb..eba6b68778 100644 --- a/p2p/BUILD.gn +++ b/p2p/BUILD.gn @@ -26,6 +26,7 @@ rtc_static_library("rtc_p2p") { "base/basicpacketsocketfactory.cc", "base/basicpacketsocketfactory.h", "base/candidate.h", + "base/candidatepairinterface.h", "base/common.h", "base/dtlstransport.cc", "base/dtlstransport.h", @@ -116,11 +117,14 @@ rtc_static_library("rtc_p2p") { } } + # TODO(deadbeef): code under p2p/quic and base/transportchannelimpl.h should be + # removed. See bugs.webrtc.org/8385. if (rtc_use_quic) { deps = [ "//third_party/libquic", ] sources += [ + "base/transportchannelimpl.h", "quic/quicconnectionhelper.cc", "quic/quicconnectionhelper.h", "quic/quicsession.cc", @@ -225,6 +229,7 @@ if (rtc_include_tests) { rtc_static_library("libstunprober") { sources = [ "stunprober/stunprober.cc", + "stunprober/stunprober.h", ] if (!build_with_chromium && is_clang) {