diff options
Diffstat (limited to 'remoting/base/BUILD.gn')
-rw-r--r-- | remoting/base/BUILD.gn | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/remoting/base/BUILD.gn b/remoting/base/BUILD.gn index 46a2b70..3929a9f 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" ] } |