| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 } | 201 } |
| 202 | 202 |
| 203 if (enable_webrtc) { | 203 if (enable_webrtc) { |
| 204 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, | 204 sources += rebase_path(content_browser_gypi_values.webrtc_browser_sources, |
| 205 ".", | 205 ".", |
| 206 "//content") | 206 "//content") |
| 207 deps += [ | 207 deps += [ |
| 208 "//jingle:jingle_glue", | 208 "//jingle:jingle_glue", |
| 209 "//third_party/libjingle:libjingle_webrtc", | 209 "//third_party/libjingle:libjingle_webrtc", |
| 210 "//third_party/libjingle:libpeerconnection", | 210 "//third_party/libjingle:libpeerconnection", |
| 211 "//ui/shell_dialogs:shell_dialogs", |
| 211 ] | 212 ] |
| 212 if (is_linux || is_mac || is_win) { | 213 if (is_linux || is_mac || is_win) { |
| 213 sources += [ | 214 sources += [ |
| 214 "media/capture/desktop_capture_device.cc", | 215 "media/capture/desktop_capture_device.cc", |
| 215 "media/capture/desktop_capture_device.h", | 216 "media/capture/desktop_capture_device.h", |
| 216 "media/capture/desktop_capture_device_uma_types.cc", | 217 "media/capture/desktop_capture_device_uma_types.cc", |
| 217 "media/capture/desktop_capture_device_uma_types.h", | 218 "media/capture/desktop_capture_device_uma_types.h", |
| 218 ] | 219 ] |
| 219 if (use_aura) { | 220 if (use_aura) { |
| 220 sources += [ | 221 sources += [ |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 | 550 |
| 550 if (enable_webvr && is_android) { | 551 if (enable_webvr && is_android) { |
| 551 sources += [ | 552 sources += [ |
| 552 "vr/android/cardboard/cardboard_vr_device.cc", | 553 "vr/android/cardboard/cardboard_vr_device.cc", |
| 553 "vr/android/cardboard/cardboard_vr_device.h", | 554 "vr/android/cardboard/cardboard_vr_device.h", |
| 554 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 555 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
| 555 "vr/android/cardboard/cardboard_vr_device_provider.h", | 556 "vr/android/cardboard/cardboard_vr_device_provider.h", |
| 556 ] | 557 ] |
| 557 } | 558 } |
| 558 } | 559 } |
| OLD | NEW |