81bf15877f
* fix: make OSR work with viz compositor * fix: update OSR patch * fix: update patch again * fix: update viz_osr.patch for macOS * fix: gn check warnings * chore: no need to change SoftwareOutputDeviceWinProxy * chore: add check in case we missed something * fix: consider scale factor when compare size * fix: make GPU OSR work * fix: autofill popups with OSR * chore: use UNIX line ending for osr_video_consumer * chore: code is already in defined(OS_MACOSX) * fix: share same OSR implementation on macOS This should also fix the crash when there is navigation on macOS. * test: osr window should not crash after navigation * fix: make osr work on Mac properly * fix: software osr on windows * fix: software osr on Linux * fix: compilation error introduced with rebase * fix: split local surface id allocation into two * Update osr_host_display_client_mac.mm * chore: update copyright year * fix: update patch
29 lines
700 B
Text
29 lines
700 B
Text
# Copyright (c) 2018 GitHub, Inc.
|
|
# Use of this source code is governed by the MIT license that can be
|
|
# found in the LICENSE file.
|
|
|
|
declare_args() {
|
|
enable_desktop_capturer = true
|
|
|
|
# Allow running Electron as a node binary.
|
|
enable_run_as_node = true
|
|
|
|
enable_osr = true
|
|
|
|
enable_view_api = false
|
|
|
|
enable_pdf_viewer = false
|
|
|
|
enable_tts = true
|
|
|
|
enable_color_chooser = true
|
|
|
|
# Provide a fake location provider for mocking
|
|
# the geolocation responses. Disable it if you
|
|
# need to test with chromium's location provider.
|
|
# Should not be enabled for release build.
|
|
enable_fake_location_provider = !is_official_build
|
|
|
|
# Enable flash plugin support.
|
|
enable_pepper_flash = true
|
|
}
|