| OLD | NEW |
| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 "media/media_stream_track.cc", | 153 "media/media_stream_track.cc", |
| 154 "media/media_stream_track.h", | 154 "media/media_stream_track.h", |
| 155 ] | 155 ] |
| 156 } | 156 } |
| 157 | 157 |
| 158 if (enable_webrtc) { | 158 if (enable_webrtc) { |
| 159 sources += rebase_path( | 159 sources += rebase_path( |
| 160 content_renderer_gypi_values.private_renderer_webrtc_sources, | 160 content_renderer_gypi_values.private_renderer_webrtc_sources, |
| 161 ".", | 161 ".", |
| 162 "//content") | 162 "//content") |
| 163 if (is_android) { | |
| 164 sources -= [ | |
| 165 "media/media_recorder_handler.cc", | |
| 166 "media/media_recorder_handler.h", | |
| 167 "media/video_track_recorder.cc", | |
| 168 "media/video_track_recorder.h", | |
| 169 ] | |
| 170 } | |
| 171 | 163 |
| 172 deps += [ | 164 deps += [ |
| 173 "//crypto", | 165 "//crypto", |
| 174 "//third_party/libjingle:libjingle_webrtc", | 166 "//third_party/libjingle:libjingle_webrtc", |
| 175 "//third_party/libjingle:libpeerconnection", | 167 "//third_party/libjingle:libpeerconnection", |
| 176 "//third_party/libjingle:libstunprober", | 168 "//third_party/libjingle:libstunprober", |
| 177 "//third_party/webrtc/modules/audio_device", | 169 "//third_party/webrtc/modules/audio_device", |
| 178 "//third_party/webrtc/modules/audio_processing", | 170 "//third_party/webrtc/modules/audio_processing", |
| 179 ] | 171 ] |
| 180 } else { | 172 } else { |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 | 226 |
| 235 if (enable_webvr) { | 227 if (enable_webvr) { |
| 236 sources += [ | 228 sources += [ |
| 237 "vr/vr_dispatcher.cc", | 229 "vr/vr_dispatcher.cc", |
| 238 "vr/vr_dispatcher.h", | 230 "vr/vr_dispatcher.h", |
| 239 "vr/vr_type_converters.cc", | 231 "vr/vr_type_converters.cc", |
| 240 "vr/vr_type_converters.h", | 232 "vr/vr_type_converters.h", |
| 241 ] | 233 ] |
| 242 } | 234 } |
| 243 } | 235 } |
| OLD | NEW |