4c7c0b41c2
* feat: add immersive dark mode * fix syntax and add header * add me * Update fuses.json5 * fix: redraw title bar on dark mode change * chore: SetWindowTheme doesn't seem to be needed * chore: separate out Win 10 dark mode implementation * final touches * final touches * chore: limit Win 10 to >= 20H1 and drop fuse * fix types * fix lint Co-authored-by: Micha Hanselmann <micha.hanselmann@gmail.com> Co-authored-by: David Sanders <dsanders11@ucsbalum.com>
34 lines
817 B
Text
34 lines
817 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_views_api = true
|
|
|
|
enable_pdf_viewer = true
|
|
|
|
enable_tts = true
|
|
|
|
enable_color_chooser = true
|
|
|
|
enable_picture_in_picture = 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 Chrome extensions support.
|
|
enable_electron_extensions = true
|
|
|
|
# Enable Spellchecker support
|
|
enable_builtin_spellchecker = true
|
|
}
|