Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(664)

Side by Side Diff: content/browser/BUILD.gn

Issue 974513002: content: Split out VideoCaptureMachine from DesktopCaptureDeviceAura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move DesktopCaptureDeviceAura code to the correct place and move task posting into ctor. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//content/browser/browser.gni") 8 import("//content/browser/browser.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 } 172 }
173 if (is_linux || is_mac || is_win) { 173 if (is_linux || is_mac || is_win) {
174 sources += [ 174 sources += [
175 "media/capture/desktop_capture_device.cc", 175 "media/capture/desktop_capture_device.cc",
176 "media/capture/desktop_capture_device.h", 176 "media/capture/desktop_capture_device.h",
177 "media/capture/desktop_capture_device_uma_types.cc", 177 "media/capture/desktop_capture_device_uma_types.cc",
178 "media/capture/desktop_capture_device_uma_types.h", 178 "media/capture/desktop_capture_device_uma_types.h",
179 ] 179 ]
180 if (use_aura) { 180 if (use_aura) {
181 sources += [ 181 sources += [
182 "media/capture/aura_window_capture_machine.cc",
183 "media/capture/aura_window_capture_machine.h",
182 "media/capture/desktop_capture_device_aura.cc", 184 "media/capture/desktop_capture_device_aura.cc",
183 "media/capture/desktop_capture_device_aura.h", 185 "media/capture/desktop_capture_device_aura.h",
184 ] 186 ]
185 } 187 }
186 defines += [ "ENABLE_SCREEN_CAPTURE=1" ] 188 defines += [ "ENABLE_SCREEN_CAPTURE=1" ]
187 deps += [ "//third_party/webrtc/modules/desktop_capture" ] 189 deps += [ "//third_party/webrtc/modules/desktop_capture" ]
188 } 190 }
189 } 191 }
190 192
191 if (is_win) { 193 if (is_win) {
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 } 436 }
435 437
436 if (is_linux && use_openssl) { 438 if (is_linux && use_openssl) {
437 deps += [ "//third_party/boringssl" ] 439 deps += [ "//third_party/boringssl" ]
438 } 440 }
439 441
440 if (enable_media_mojo_renderer) { 442 if (enable_media_mojo_renderer) {
441 deps += [ "//media/mojo/services:renderer_service" ] 443 deps += [ "//media/mojo/services:renderer_service" ]
442 } 444 }
443 } 445 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698