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

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

Issue 1514143003: Add support for unmixed audio from remote WebRTC remote tracks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix other include Created 5 years 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 ] 120 ]
121 } 121 }
122 122
123 # TODO(jrg): remove the OS=="android" section? 123 # TODO(jrg): remove the OS=="android" section?
124 # http://crbug.com/113172 124 # http://crbug.com/113172
125 # Understand better how media_stream_ is tied into Chromium. 125 # Understand better how media_stream_ is tied into Chromium.
126 if (!enable_webrtc && is_android) { 126 if (!enable_webrtc && is_android) {
127 sources -= [ 127 sources -= [
128 "media/media_stream_audio_level_calculator.cc", 128 "media/media_stream_audio_level_calculator.cc",
129 "media/media_stream_audio_level_calculator.h", 129 "media/media_stream_audio_level_calculator.h",
130 "media/media_stream_audio_track.cc",
131 "media/media_stream_audio_track.h",
130 "media/media_stream_center.h", 132 "media/media_stream_center.h",
131 "media/media_stream_constraints_util.cc", 133 "media/media_stream_constraints_util.cc",
132 "media/media_stream_constraints_util.h", 134 "media/media_stream_constraints_util.h",
133 "media/media_stream_dispatcher.h", 135 "media/media_stream_dispatcher.h",
134 "media/media_stream_dispatcher_eventhandler.h", 136 "media/media_stream_dispatcher_eventhandler.h",
135 "media/media_stream_track.cc", 137 "media/media_stream_track.cc",
136 "media/media_stream_track.h", 138 "media/media_stream_track.h",
137 ] 139 ]
138 } 140 }
139 141
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 "vr/vr_dispatcher.h", 214 "vr/vr_dispatcher.h",
213 "vr/vr_type_converters.cc", 215 "vr/vr_type_converters.cc",
214 "vr/vr_type_converters.h", 216 "vr/vr_type_converters.h",
215 ] 217 ]
216 } 218 }
217 219
218 if (use_seccomp_bpf) { 220 if (use_seccomp_bpf) {
219 defines += [ "USE_SECCOMP_BPF" ] 221 defines += [ "USE_SECCOMP_BPF" ]
220 } 222 }
221 } 223 }
OLDNEW
« no previous file with comments | « content/public/renderer/media_stream_audio_sink.cc ('k') | content/renderer/media/media_stream_audio_track.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698