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

Unified Diff: webrtc/base/BUILD.gn

Issue 2747863003: Loosening the coupling between WebRTC and //third_party/protobuf (Closed)
Patch Set: Reverting PRESUBMIT.py to run trybots on chromium 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) {
kjellander_webrtc 2017/03/16 13:29:54 Hmm, I thought we would need to have this target a
mbonadei 2017/03/16 14:48:57 Mmmh... You are right! That's an awesome catch! I
+ source_set("protobuf_utils") {
+ sources = [
+ "protobuf_utils.h",
+ ]
+ public_deps = [
+ "//third_party/protobuf:protobuf_lite",
+ ]
+ }
+}
+
# 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