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

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

Issue 1151973003: ppapi: implement PPB_AudioEncoder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More Windows fixes in proxy code Created 5 years, 6 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/DEPS » ('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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "//ppapi/host", 149 "//ppapi/host",
150 "//ppapi/proxy", 150 "//ppapi/proxy",
151 "//ppapi/shared_impl", 151 "//ppapi/shared_impl",
152 "//third_party/libvpx", 152 "//third_party/libvpx",
153 "//third_party/libyuv", 153 "//third_party/libyuv",
154 "//third_party/opus",
155 "//third_party/speex",
154 ] 156 ]
155 } else { 157 } else {
156 # These files are in the WebRTC list, but also require plugins. 158 # These files are in the WebRTC list, but also require plugins.
157 if (enable_webrtc) { 159 if (enable_webrtc) {
158 sources -= [ 160 sources -= [
159 "media/webrtc/video_destination_handler.cc", 161 "media/webrtc/video_destination_handler.cc",
160 "media/webrtc/video_destination_handler.h", 162 "media/webrtc/video_destination_handler.h",
161 ] 163 ]
162 } 164 }
163 } 165 }
(...skipping 29 matching lines...) Expand all
193 } 195 }
194 196
195 if (enable_media_mojo_renderer) { 197 if (enable_media_mojo_renderer) {
196 sources += [ 198 sources += [
197 "media/content_media_service_provider.cc", 199 "media/content_media_service_provider.cc",
198 "media/content_media_service_provider.h", 200 "media/content_media_service_provider.h",
199 ] 201 ]
200 deps += [ "//media/mojo/services:proxy" ] 202 deps += [ "//media/mojo/services:proxy" ]
201 } 203 }
202 } 204 }
OLDNEW
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/pepper/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698