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

Unified Diff: webrtc/api/BUILD.gn

Issue 2986893002: Piggybacking simulcast id and ALR experiment id into video content type extension. (Closed)
Patch Set: Remove static initialization from VideoContentType and remove memoization in AlrDetector Created 3 years, 4 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/api/BUILD.gn
diff --git a/webrtc/api/BUILD.gn b/webrtc/api/BUILD.gn
index 7c438086539105cfbbeeaac7cb91f91f084f5e54..eb76cfa1a47821e5612678fb03a7e5007a00e6f9 100644
--- a/webrtc/api/BUILD.gn
+++ b/webrtc/api/BUILD.gn
@@ -164,6 +164,13 @@ rtc_source_set("transport_api") {
]
}
+rtc_source_set("video_content_type_api") {
+ sources = [
+ "video/video_content_type.cc",
+ "video/video_content_type.h",
+ ]
+}
+
rtc_source_set("video_frame_api") {
sources = [
"video/i420_buffer.cc",
@@ -178,6 +185,7 @@ rtc_source_set("video_frame_api") {
]
deps = [
+ ":video_content_type_api",
"../rtc_base:rtc_base_approved",
"../system_wrappers",
]

Powered by Google App Engine
This is Rietveld 408576698