Index: remoting/base/BUILD.gn |
diff --git a/remoting/base/BUILD.gn b/remoting/base/BUILD.gn |
index 46a2b706fc31a7f5b8e95634d85e1f45c1a700ae..3929a9f1147734e1e97a08b6f48d735f3e72bfb1 100644 |
--- a/remoting/base/BUILD.gn |
+++ b/remoting/base/BUILD.gn |
@@ -66,8 +66,6 @@ static_library("base") { |
] |
configs += [ "//build/config/compiler:wexit_time_destructors" ] |
- # TODO(GYP) Remove when WebRTC is converted. |
- configs += [ "//content:webrtc_stub_config" ] |
deps = [ |
"//base", |
@@ -81,7 +79,7 @@ static_library("base") { |
"//third_party/libyuv", |
"//third_party/opus", |
"//third_party/protobuf:protobuf_lite", |
- #"//third_party/webrtc/modules/desktop_capture", TODO(GYP) |
+ "//third_party/webrtc/modules/desktop_capture", |
"//ui/base", |
"//ui/gfx", |
"//ui/gfx/geometry", |
@@ -93,5 +91,10 @@ static_library("base") { |
"//remoting/proto", |
"//third_party/protobuf:protobuf_lite", |
] |
+ |
+ # TODO(GYP) This config should be a direct_dependent_config of |
+ # //third_party/webrtc/modules/desktop_capture so we shouldn't have to |
+ # include it here. Remove this line when the direct_dependent_config is set. |
+ configs += [ "//third_party/webrtc:common_inherited_config" ] |
} |