2018-10-01 20:00:53 +00:00
|
|
|
# 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() {
|
2020-03-28 06:44:57 +00:00
|
|
|
enable_views_api = true
|
2018-10-01 20:00:53 +00:00
|
|
|
|
2020-02-13 00:39:12 +00:00
|
|
|
enable_pdf_viewer = true
|
2018-10-01 20:00:53 +00:00
|
|
|
|
|
|
|
# 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 23:01:08 +00:00
|
|
|
# Enable Chrome extensions support.
|
2020-04-29 06:16:10 +00:00
|
|
|
enable_electron_extensions = true
|
2019-10-31 20:11:51 +00:00
|
|
|
|
|
|
|
# Enable Spellchecker support
|
|
|
|
enable_builtin_spellchecker = true
|
2023-09-27 05:49:10 +00:00
|
|
|
|
|
|
|
# The version of Electron.
|
|
|
|
# Packagers and vendor builders should set this in gn args to avoid running
|
|
|
|
# the script that reads git tag.
|
|
|
|
override_electron_version = ""
|
2018-10-01 20:00:53 +00:00
|
|
|
}
|