2018-10-02 01:30:53 +05:30
|
|
|
# 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
|
|
|
|
|
2019-04-17 23:10:04 +02:00
|
|
|
enable_osr = true
|
2018-10-02 01:30:53 +05:30
|
|
|
|
2020-03-28 15:44:57 +09:00
|
|
|
enable_views_api = true
|
2018-10-02 01:30:53 +05:30
|
|
|
|
2020-02-12 16:39:12 -08:00
|
|
|
enable_pdf_viewer = true
|
2018-10-02 01:30:53 +05:30
|
|
|
|
2018-10-11 15:52:12 +02:00
|
|
|
enable_tts = true
|
|
|
|
|
2018-10-12 01:53:46 +02:00
|
|
|
enable_color_chooser = true
|
|
|
|
|
2019-08-22 12:17:50 +02:00
|
|
|
enable_picture_in_picture = true
|
|
|
|
|
2018-10-02 01:30:53 +05:30
|
|
|
# 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
|
|
|
|
|
2019-07-24 19:01:08 -04:00
|
|
|
# Enable Chrome extensions support.
|
2020-04-28 23:16:10 -07:00
|
|
|
enable_electron_extensions = true
|
2019-10-31 13:11:51 -07:00
|
|
|
|
|
|
|
# Enable Spellchecker support
|
|
|
|
enable_builtin_spellchecker = true
|
2020-10-28 15:00:21 -05:00
|
|
|
|
|
|
|
# Undocumented Windows dark mode API
|
|
|
|
enable_win_dark_mode_window_ui = false
|
2018-10-02 01:30:53 +05:30
|
|
|
}
|