| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, | 185 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, |
| 186 ".", | 186 ".", |
| 187 "//content") | 187 "//content") |
| 188 deps += [ | 188 deps += [ |
| 189 "//jingle:jingle_glue", | 189 "//jingle:jingle_glue", |
| 190 "//third_party/libjingle:libjingle_webrtc", | 190 "//third_party/libjingle:libjingle_webrtc", |
| 191 "//third_party/webrtc", | 191 "//third_party/webrtc", |
| 192 "//third_party/webrtc/base:rtc_base", | 192 "//third_party/webrtc/base:rtc_base", |
| 193 "//third_party/webrtc/modules/desktop_capture:primitives", | 193 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 194 ] | 194 ] |
| 195 if (is_linux || is_mac || is_win) { | 195 if (is_linux || is_mac || is_win || is_android) { |
| 196 sources += [ | 196 sources += [ |
| 197 "media/capture/desktop_capture_device.cc", | 197 "media/capture/desktop_capture_device.cc", |
| 198 "media/capture/desktop_capture_device.h", | 198 "media/capture/desktop_capture_device.h", |
| 199 ] | 199 ] |
| 200 if (use_aura) { | 200 if (use_aura) { |
| 201 sources += [ | 201 sources += [ |
| 202 "media/capture/aura_window_capture_machine.cc", | 202 "media/capture/aura_window_capture_machine.cc", |
| 203 "media/capture/aura_window_capture_machine.h", | 203 "media/capture/aura_window_capture_machine.h", |
| 204 "media/capture/desktop_capture_device_aura.cc", | 204 "media/capture/desktop_capture_device_aura.cc", |
| 205 "media/capture/desktop_capture_device_aura.h", | 205 "media/capture/desktop_capture_device_aura.h", |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 if (!is_component_build) { | 528 if (!is_component_build) { |
| 529 public_deps = [ | 529 public_deps = [ |
| 530 ":browser", | 530 ":browser", |
| 531 ] | 531 ] |
| 532 } else { | 532 } else { |
| 533 public_deps = [ | 533 public_deps = [ |
| 534 "//third_party/leveldatabase", | 534 "//third_party/leveldatabase", |
| 535 ] | 535 ] |
| 536 } | 536 } |
| 537 } | 537 } |
| OLD | NEW |