Chromium Code Reviews| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 111 "media/media_stream_constraints_util.cc", | 111 "media/media_stream_constraints_util.cc", |
| 112 "media/media_stream_constraints_util.h", | 112 "media/media_stream_constraints_util.h", |
| 113 "media/media_stream_dispatcher.h", | 113 "media/media_stream_dispatcher.h", |
| 114 "media/media_stream_dispatcher_eventhandler.h", | 114 "media/media_stream_dispatcher_eventhandler.h", |
| 115 "media/media_stream_track.cc", | 115 "media/media_stream_track.cc", |
| 116 "media/media_stream_track.h", | 116 "media/media_stream_track.h", |
| 117 ] | 117 ] |
| 118 } | 118 } |
| 119 | 119 |
| 120 if (enable_webrtc) { | 120 if (enable_webrtc) { |
| 121 print("webrtc enabled") | |
|
Nico
2015/01/15 23:35:07
print("remove this")
jamesr
2015/01/16 01:53:45
Done.
| |
| 121 sources += rebase_path( | 122 sources += rebase_path( |
| 122 content_renderer_gypi_values.private_renderer_webrtc_sources, | 123 content_renderer_gypi_values.private_renderer_webrtc_sources, |
| 123 ".", | 124 ".", |
| 124 "//content") | 125 "//content") |
| 125 deps += [ | 126 deps += [ |
| 126 "//crypto", | 127 "//crypto", |
| 127 "//third_party/libyuv", | 128 "//third_party/libyuv", |
| 128 "//third_party/webrtc/modules/audio_device", | 129 "//third_party/webrtc/modules/audio_device", |
| 129 "//third_party/webrtc/modules/audio_processing", | 130 "//third_party/webrtc/modules/audio_processing", |
| 130 "//third_party/libjingle:libjingle_webrtc", | 131 "//third_party/libjingle:libjingle_webrtc", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 181 | 182 |
| 182 if (enable_browser_cdms) { | 183 if (enable_browser_cdms) { |
| 183 sources += [ | 184 sources += [ |
| 184 "media/crypto/proxy_media_keys.cc", | 185 "media/crypto/proxy_media_keys.cc", |
| 185 "media/crypto/proxy_media_keys.h", | 186 "media/crypto/proxy_media_keys.h", |
| 186 "media/crypto/renderer_cdm_manager.cc", | 187 "media/crypto/renderer_cdm_manager.cc", |
| 187 "media/crypto/renderer_cdm_manager.h", | 188 "media/crypto/renderer_cdm_manager.h", |
| 188 ] | 189 ] |
| 189 } | 190 } |
| 190 } | 191 } |
| OLD | NEW |