| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 deps += [ "//sandbox" ] | 185 deps += [ "//sandbox" ] |
| 186 } | 186 } |
| 187 if (!is_android && !is_ios) { | 187 if (!is_android && !is_ios) { |
| 188 deps += [ "//content/browser/tracing:resources" ] | 188 deps += [ "//content/browser/tracing:resources" ] |
| 189 } | 189 } |
| 190 | 190 |
| 191 if (enable_webrtc) { | 191 if (enable_webrtc) { |
| 192 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, | 192 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, |
| 193 ".", | 193 ".", |
| 194 "//content") | 194 "//content") |
| 195 deps += [ "//jingle:jingle_glue" ] | 195 deps += [ |
| 196 if (is_linux) { | 196 "//jingle:jingle_glue", |
| 197 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 197 "//third_party/libjingle:libjingle_webrtc", |
| 198 } | 198 ] |
| 199 if (is_linux || is_mac || is_win) { | 199 if (is_linux || is_mac || is_win) { |
| 200 sources += [ | 200 sources += [ |
| 201 "media/capture/desktop_capture_device.cc", | 201 "media/capture/desktop_capture_device.cc", |
| 202 "media/capture/desktop_capture_device.h", | 202 "media/capture/desktop_capture_device.h", |
| 203 "media/capture/desktop_capture_device_uma_types.cc", | 203 "media/capture/desktop_capture_device_uma_types.cc", |
| 204 "media/capture/desktop_capture_device_uma_types.h", | 204 "media/capture/desktop_capture_device_uma_types.h", |
| 205 ] | 205 ] |
| 206 if (use_aura) { | 206 if (use_aura) { |
| 207 sources += [ | 207 sources += [ |
| 208 "media/capture/aura_window_capture_machine.cc", | 208 "media/capture/aura_window_capture_machine.cc", |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 | 548 |
| 549 if (enable_webvr && is_android) { | 549 if (enable_webvr && is_android) { |
| 550 sources += [ | 550 sources += [ |
| 551 "vr/android/cardboard/cardboard_vr_device.cc", | 551 "vr/android/cardboard/cardboard_vr_device.cc", |
| 552 "vr/android/cardboard/cardboard_vr_device.h", | 552 "vr/android/cardboard/cardboard_vr_device.h", |
| 553 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 553 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
| 554 "vr/android/cardboard/cardboard_vr_device_provider.h", | 554 "vr/android/cardboard/cardboard_vr_device_provider.h", |
| 555 ] | 555 ] |
| 556 } | 556 } |
| 557 } | 557 } |
| OLD | NEW |