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

Unified Diff: content/renderer/BUILD.gn

Issue 1884383002: VideoTrackRecorder: Adding inner class H264Encoder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: hbos@ comments: adding explicit dep to openh264 in content.gyp and content/renderer/BUILD.gn Created 4 years, 8 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 | « content/content.gyp ('k') | content/renderer/media/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/BUILD.gn
diff --git a/content/renderer/BUILD.gn b/content/renderer/BUILD.gn
index 9a00f8e99469266862504a9f9e4295f0b6af18c2..b4978423f9716240238eba4c71565b2f4acd9e1b 100644
--- a/content/renderer/BUILD.gn
+++ b/content/renderer/BUILD.gn
@@ -6,6 +6,7 @@ import("//build/config/features.gni")
import("//build/config/ui.gni")
import("//content/renderer/renderer.gni")
import("//media/media_options.gni")
+import("//third_party/webrtc/build/webrtc.gni")
source_set("renderer") {
# Only the public target should depend on this. All other targets (even
@@ -171,6 +172,9 @@ source_set("renderer") {
"//third_party/webrtc/modules/video_coding:webrtc_h264",
"//third_party/webrtc/system_wrappers",
]
+ if (rtc_use_h264) {
+ deps += [ "//third_party/openh264:encoder" ]
+ }
} else {
sources += [
"media/webrtc_logging.h",
« no previous file with comments | « content/content.gyp ('k') | content/renderer/media/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698