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

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

Issue 1348563003: ppapi: implement PPB_AudioEncoder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 if (enable_plugins) { 174 if (enable_plugins) {
175 sources += rebase_path( 175 sources += rebase_path(
176 content_renderer_gypi_values.private_renderer_plugin_sources, 176 content_renderer_gypi_values.private_renderer_plugin_sources,
177 ".", 177 ".",
178 "//content") 178 "//content")
179 deps += [ 179 deps += [
180 "//ppapi/host", 180 "//ppapi/host",
181 "//ppapi/proxy", 181 "//ppapi/proxy",
182 "//ppapi/shared_impl", 182 "//ppapi/shared_impl",
183 "//third_party/libvpx_new", 183 "//third_party/libvpx_new",
184 "//third_party/opus",
184 ] 185 ]
185 } 186 }
186 187
187 if (enable_plugins && enable_webrtc) { 188 if (enable_plugins && enable_webrtc) {
188 sources += rebase_path( 189 sources += rebase_path(
189 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, 190 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources,
190 ".", 191 ".",
191 "//content") 192 "//content")
192 } 193 }
193 194
(...skipping 26 matching lines...) Expand all
220 221
221 if (enable_webvr) { 222 if (enable_webvr) {
222 sources += [ 223 sources += [
223 "vr/vr_dispatcher.cc", 224 "vr/vr_dispatcher.cc",
224 "vr/vr_dispatcher.h", 225 "vr/vr_dispatcher.h",
225 "vr/vr_type_converters.cc", 226 "vr/vr_type_converters.cc",
226 "vr/vr_type_converters.h", 227 "vr/vr_type_converters.h",
227 ] 228 ]
228 } 229 }
229 } 230 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698