| 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/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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 sources += [ | 189 sources += [ |
| 190 "media/capture/aura_window_capture_machine.cc", | 190 "media/capture/aura_window_capture_machine.cc", |
| 191 "media/capture/aura_window_capture_machine.h", | 191 "media/capture/aura_window_capture_machine.h", |
| 192 "media/capture/desktop_capture_device_aura.cc", | 192 "media/capture/desktop_capture_device_aura.cc", |
| 193 "media/capture/desktop_capture_device_aura.h", | 193 "media/capture/desktop_capture_device_aura.h", |
| 194 ] | 194 ] |
| 195 } | 195 } |
| 196 defines += [ "ENABLE_SCREEN_CAPTURE=1" ] | 196 defines += [ "ENABLE_SCREEN_CAPTURE=1" ] |
| 197 deps += [ "//third_party/webrtc/modules/desktop_capture" ] | 197 deps += [ "//third_party/webrtc/modules/desktop_capture" ] |
| 198 } | 198 } |
| 199 if (is_linux || is_mac) { |
| 200 sources += [ |
| 201 "renderer_host/media/video_capture_texture_wrapper.cc", |
| 202 "renderer_host/media/video_capture_texture_wrapper.h", |
| 203 ] |
| 204 } |
| 199 } | 205 } |
| 200 | 206 |
| 201 if (is_win) { | 207 if (is_win) { |
| 202 sources -= [ | 208 sources -= [ |
| 203 "device_sensors/data_fetcher_shared_memory_default.cc", | 209 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 204 "geolocation/empty_wifi_data_provider.cc", | 210 "geolocation/empty_wifi_data_provider.cc", |
| 205 ] | 211 ] |
| 206 defines += [ | 212 defines += [ |
| 207 # This prevents the inclusion of atlhost.h which paired | 213 # This prevents the inclusion of atlhost.h which paired |
| 208 # with the windows 8 sdk it does the wrong thing. | 214 # with the windows 8 sdk it does the wrong thing. |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 } | 453 } |
| 448 | 454 |
| 449 if (is_linux && use_openssl) { | 455 if (is_linux && use_openssl) { |
| 450 deps += [ "//third_party/boringssl" ] | 456 deps += [ "//third_party/boringssl" ] |
| 451 } | 457 } |
| 452 | 458 |
| 453 if (enable_media_mojo_renderer) { | 459 if (enable_media_mojo_renderer) { |
| 454 deps += [ "//media/mojo/services:renderer_service" ] | 460 deps += [ "//media/mojo/services:renderer_service" ] |
| 455 } | 461 } |
| 456 } | 462 } |
| OLD | NEW |