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

Unified Diff: webrtc/base/BUILD.gn

Issue 2747863003: Loosening the coupling between WebRTC and //third_party/protobuf (Closed)
Patch Set: Adding protobuf dep to DEPS file 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
« no previous file with comments | « no previous file | webrtc/base/DEPS » ('j') | webrtc/base/protobuf_utils.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/BUILD.gn
diff --git a/webrtc/base/BUILD.gn b/webrtc/base/BUILD.gn
index bf6d989027a0ba4757fad120b3523246668a66cb..76e4fa8721c1127a4929e8934981107e397253a2 100644
--- a/webrtc/base/BUILD.gn
+++ b/webrtc/base/BUILD.gn
@@ -79,6 +79,14 @@ if (!rtc_build_ssl) {
}
}
+# TODO(mbonadei): wrap into an if to check if rtc_enable_protobuf is true?
kjellander_webrtc 2017/03/14 21:28:05 Yes, put this inside an if(rtc_enable_protobuf) co
mbonadei 2017/03/15 10:08:05 Done.
+source_set("protobuf_utils") {
+ sources = [
+ "protobuf_utils.h",
+ ]
+ include_dirs = [ "//third_party/protobuf/src" ]
kjellander_webrtc 2017/03/14 21:28:05 I think you should replace this with a deps entry
mbonadei 2017/03/15 10:08:05 Done.
+}
+
# The subset of rtc_base approved for use outside of libjingle.
rtc_static_library("rtc_base_approved") {
defines = []
« no previous file with comments | « no previous file | webrtc/base/DEPS » ('j') | webrtc/base/protobuf_utils.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698