Chromium Code Reviews| Index: webrtc/base/BUILD.gn | 
| diff --git a/webrtc/base/BUILD.gn b/webrtc/base/BUILD.gn | 
| index bf6d989027a0ba4757fad120b3523246668a66cb..341838506bb0e504c03e7c3925001055682ce43c 100644 | 
| --- a/webrtc/base/BUILD.gn | 
| +++ b/webrtc/base/BUILD.gn | 
| @@ -79,6 +79,17 @@ if (!rtc_build_ssl) { | 
| } | 
| } | 
| +if (rtc_enable_protobuf) { | 
| + source_set("protobuf_utils") { | 
| + sources = [ | 
| + "protobuf_utils.h", | 
| 
 
kwiberg-webrtc
2017/03/22 10:03:22
This file contains #ifdefs on WEBRTC_ENABLE_PROTOB
 
mbonadei
2017/03/23 16:13:58
Already explained in the other comment. I was doin
 
 | 
| + ] | 
| + public_deps = [ | 
| + "//third_party/protobuf:protobuf_lite", | 
| 
 
kwiberg-webrtc
2017/03/22 10:03:22
Why is this a public dependency?
 
mbonadei
2017/03/23 16:13:58
This is a good question.
I tried to avoid the pub
 
kwiberg-webrtc
2017/03/24 13:02:07
public_deps is used to "export" dependencies from
 
mbonadei
2017/03/30 07:27:27
Sorry for the late reply.
I am getting the error
 
 | 
| + ] | 
| + } | 
| +} | 
| + | 
| # The subset of rtc_base approved for use outside of libjingle. | 
| rtc_static_library("rtc_base_approved") { | 
| defines = [] |