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/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 | 9 |
10 source_set("browser") { | 10 source_set("browser") { |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 | 178 |
179 if (enable_webrtc) { | 179 if (enable_webrtc) { |
180 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, | 180 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, |
181 ".", | 181 ".", |
182 "//content") | 182 "//content") |
183 deps += [ | 183 deps += [ |
184 "//jingle:jingle_glue", | 184 "//jingle:jingle_glue", |
185 "//third_party/libjingle:libjingle_webrtc", | 185 "//third_party/libjingle:libjingle_webrtc", |
186 "//third_party/webrtc", | 186 "//third_party/webrtc", |
187 "//third_party/webrtc/base:rtc_base", | 187 "//third_party/webrtc/base:rtc_base", |
| 188 "//third_party/webrtc/media:rtc_media", |
188 "//third_party/webrtc/modules/desktop_capture:primitives", | 189 "//third_party/webrtc/modules/desktop_capture:primitives", |
189 ] | 190 ] |
190 if (is_linux || is_mac || is_win) { | 191 if (is_linux || is_mac || is_win) { |
191 sources += [ | 192 sources += [ |
192 "media/capture/desktop_capture_device.cc", | 193 "media/capture/desktop_capture_device.cc", |
193 "media/capture/desktop_capture_device.h", | 194 "media/capture/desktop_capture_device.h", |
194 ] | 195 ] |
195 if (use_aura) { | 196 if (use_aura) { |
196 sources += [ | 197 sources += [ |
197 "media/capture/aura_window_capture_machine.cc", | 198 "media/capture/aura_window_capture_machine.cc", |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 if (!is_component_build) { | 540 if (!is_component_build) { |
540 public_deps = [ | 541 public_deps = [ |
541 ":browser", | 542 ":browser", |
542 ] | 543 ] |
543 } else { | 544 } else { |
544 public_deps = [ | 545 public_deps = [ |
545 "//third_party/leveldatabase", | 546 "//third_party/leveldatabase", |
546 ] | 547 ] |
547 } | 548 } |
548 } | 549 } |
OLD | NEW |