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() {
|
2020-02-12 16:39:12 -08:00
|
|
|
enable_pdf_viewer = 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
|
2023-09-27 14:49:10 +09: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 = ""
|
2024-02-07 07:23:17 +09:00
|
|
|
|
|
|
|
# Define an extra item that will show in process.versions, the value must
|
|
|
|
# be in the format of "key:value".
|
|
|
|
# Packagers and vendor builders can set this in gn args to attach extra info
|
|
|
|
# about the build in the binary.
|
|
|
|
electron_vendor_version = ""
|
2018-10-02 01:30:53 +05:30
|
|
|
}
|