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

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

Issue 956893002: content: pepper: VideoEncoder: add software encoder support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another android dep fix Created 5 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 unified diff | Download patch
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/pepper/pepper_video_encoder_host.h » ('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("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/renderer/renderer.gni") 7 import("//content/renderer/renderer.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 9
10 source_set("renderer") { 10 source_set("renderer") {
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 "media/webrtc_logging_noop.cc", 139 "media/webrtc_logging_noop.cc",
140 ] 140 ]
141 } 141 }
142 142
143 if (enable_plugins) { 143 if (enable_plugins) {
144 sources += rebase_path( 144 sources += rebase_path(
145 content_renderer_gypi_values.private_renderer_plugin_sources, 145 content_renderer_gypi_values.private_renderer_plugin_sources,
146 ".", 146 ".",
147 "//content") 147 "//content")
148 deps += [ 148 deps += [
149 "//media/cast:sender",
149 "//ppapi/host", 150 "//ppapi/host",
150 "//ppapi/proxy", 151 "//ppapi/proxy",
151 "//ppapi/shared_impl", 152 "//ppapi/shared_impl",
152 "//third_party/libyuv", 153 "//third_party/libyuv",
153 ] 154 ]
154 } else { 155 } else {
155 # These files are in the WebRTC list, but also require plugins. 156 # These files are in the WebRTC list, but also require plugins.
156 if (enable_webrtc) { 157 if (enable_webrtc) {
157 sources -= [ 158 sources -= [
158 "media/webrtc/video_destination_handler.cc", 159 "media/webrtc/video_destination_handler.cc",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 } 193 }
193 194
194 if (enable_media_mojo_renderer) { 195 if (enable_media_mojo_renderer) {
195 sources += [ 196 sources += [
196 "media/media_renderer_service_provider.cc", 197 "media/media_renderer_service_provider.cc",
197 "media/media_renderer_service_provider.h", 198 "media/media_renderer_service_provider.h",
198 ] 199 ]
199 deps += [ "//media/mojo/services:renderer_proxy" ] 200 deps += [ "//media/mojo/services:renderer_proxy" ]
200 } 201 }
201 } 202 }
OLDNEW
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/pepper/pepper_video_encoder_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698