| 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 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 10 | 10 |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 | 179 |
| 180 if (enable_webrtc) { | 180 if (enable_webrtc) { |
| 181 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, | 181 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, |
| 182 ".", | 182 ".", |
| 183 "//content") | 183 "//content") |
| 184 deps += [ | 184 deps += [ |
| 185 "//jingle:jingle_glue", | 185 "//jingle:jingle_glue", |
| 186 "//third_party/libjingle:libjingle_webrtc", | 186 "//third_party/libjingle:libjingle_webrtc", |
| 187 "//third_party/webrtc", | 187 "//third_party/webrtc", |
| 188 "//third_party/webrtc/base:rtc_base", | 188 "//third_party/webrtc/base:rtc_base", |
| 189 "//third_party/webrtc/media:rtc_media", |
| 189 "//third_party/webrtc/modules/desktop_capture:primitives", | 190 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 190 ] | 191 ] |
| 191 if (is_linux || is_mac || is_win) { | 192 if (is_linux || is_mac || is_win) { |
| 192 sources += [ | 193 sources += [ |
| 193 "media/capture/desktop_capture_device.cc", | 194 "media/capture/desktop_capture_device.cc", |
| 194 "media/capture/desktop_capture_device.h", | 195 "media/capture/desktop_capture_device.h", |
| 195 ] | 196 ] |
| 196 if (use_aura) { | 197 if (use_aura) { |
| 197 sources += [ | 198 sources += [ |
| 198 "media/capture/aura_window_capture_machine.cc", | 199 "media/capture/aura_window_capture_machine.cc", |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 if (!is_component_build) { | 529 if (!is_component_build) { |
| 529 public_deps = [ | 530 public_deps = [ |
| 530 ":browser", | 531 ":browser", |
| 531 ] | 532 ] |
| 532 } else { | 533 } else { |
| 533 public_deps = [ | 534 public_deps = [ |
| 534 "//third_party/leveldatabase", | 535 "//third_party/leveldatabase", |
| 535 ] | 536 ] |
| 536 } | 537 } |
| 537 } | 538 } |
| OLD | NEW |