| 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 | 8 |
| 9 source_set("renderer") { | 9 source_set("renderer") { |
| 10 # Only targets in the content tree can depend directly on this target. | 10 # Only targets in the content tree can depend directly on this target. |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 | 123 |
| 124 if (enable_webrtc) { | 124 if (enable_webrtc) { |
| 125 sources += rebase_path( | 125 sources += rebase_path( |
| 126 content_renderer_gypi_values.private_renderer_webrtc_sources, | 126 content_renderer_gypi_values.private_renderer_webrtc_sources, |
| 127 ".", "//content") | 127 ".", "//content") |
| 128 deps += [ | 128 deps += [ |
| 129 "//crypto", | 129 "//crypto", |
| 130 "//third_party/libyuv", | 130 "//third_party/libyuv", |
| 131 "//third_party/webrtc/modules/audio_device", | 131 "//third_party/webrtc/modules/audio_device", |
| 132 "//third_party/webrtc/modules/audio_processing", | 132 "//third_party/webrtc/modules/audio_processing", |
| 133 #"../third_party/libjingle/libjingle.gyp:libjingle_webrtc", TODO(GYP) | 133 "//third_party/libjingle:libjingle_webrtc", |
| 134 #"../third_party/libjingle/libjingle.gyp:libpeerconnection", TODO(GYP) | 134 "//third_party/libjingle:libpeerconnection", |
| 135 ] | 135 ] |
| 136 } else { | 136 } else { |
| 137 sources += [ | 137 sources += [ |
| 138 "media/webrtc_logging_noop.cc", | 138 "media/webrtc_logging_noop.cc", |
| 139 "media/webrtc_logging.h", | 139 "media/webrtc_logging.h", |
| 140 ] | 140 ] |
| 141 } | 141 } |
| 142 | 142 |
| 143 if (enable_plugins) { | 143 if (enable_plugins) { |
| 144 sources += rebase_path( | 144 sources += rebase_path( |
| (...skipping 18 matching lines...) Expand all Loading... |
| 163 if (enable_plugins && enable_webrtc) { | 163 if (enable_plugins && enable_webrtc) { |
| 164 sources += rebase_path( | 164 sources += rebase_path( |
| 165 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, | 165 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, |
| 166 ".", "//content") | 166 ".", "//content") |
| 167 } | 167 } |
| 168 | 168 |
| 169 if (printing_mode == 1) { | 169 if (printing_mode == 1) { |
| 170 deps += [ "//printing" ] | 170 deps += [ "//printing" ] |
| 171 } | 171 } |
| 172 } | 172 } |
| OLD | NEW |