Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(335)

Unified Diff: webrtc/base/BUILD.gn

Issue 2747863003: Loosening the coupling between WebRTC and //third_party/protobuf (Closed)
Patch Set: Adding other deps to protobuf_utils Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 = []

Powered by Google App Engine
This is Rietveld 408576698