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

Side by Side Diff: content/public/renderer/BUILD.gn

Issue 1673183002: Enable H.264 video WebRTC behind run-time flag and add WebRtcBrowserTest for H.264 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed stuff, removing references to 'finch' Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « content/public/common/feature_h264_with_openh264_ffmpeg.cc ('k') | content/renderer/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//content/renderer/renderer.gni") 6 import("//content/renderer/renderer.gni")
7 7
8 # See //content/BUILD.gn for how this works. 8 # See //content/BUILD.gn for how this works.
9 group("renderer") { 9 group("renderer") {
10 if (is_component_build) { 10 if (is_component_build) {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 # This target is a pair with content/renderer. They always go together and 42 # This target is a pair with content/renderer. They always go together and
43 # include headers from each other. 43 # include headers from each other.
44 "//content/renderer", 44 "//content/renderer",
45 ] 45 ]
46 46
47 if (enable_webrtc) { 47 if (enable_webrtc) {
48 sources += 48 sources +=
49 rebase_path(content_renderer_gypi_values.public_renderer_webrtc_sources, 49 rebase_path(content_renderer_gypi_values.public_renderer_webrtc_sources,
50 ".", 50 ".",
51 "//content") 51 "//content")
52 deps += [ "//third_party/webrtc" ] 52 deps += [
53 "//content/public/common:feature_h264_with_openh264_ffmpeg",
54 "//third_party/webrtc",
55 ]
53 } 56 }
54 57
55 if (enable_plugins) { 58 if (enable_plugins) {
56 sources += 59 sources +=
57 rebase_path(content_renderer_gypi_values.public_renderer_plugin_sources, 60 rebase_path(content_renderer_gypi_values.public_renderer_plugin_sources,
58 ".", 61 ".",
59 "//content") 62 "//content")
60 } 63 }
61 } 64 }
OLDNEW
« no previous file with comments | « content/public/common/feature_h264_with_openh264_ffmpeg.cc ('k') | content/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698