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() {
|
|
|
|
enable_desktop_capturer = true
|
|
|
|
|
|
|
|
# Allow running Electron as a node binary.
|
|
|
|
enable_run_as_node = true
|
|
|
|
|
2019-01-12 01:00:43 +00:00
|
|
|
enable_osr = false
|
2018-10-01 20:00:53 +00:00
|
|
|
|
|
|
|
enable_view_api = false
|
|
|
|
|
|
|
|
enable_pdf_viewer = false
|
|
|
|
|
2018-10-11 13:52:12 +00:00
|
|
|
enable_tts = true
|
|
|
|
|
2018-10-11 23:53:46 +00:00
|
|
|
enable_color_chooser = 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
|
|
|
|
|
|
|
|
# Enable flash plugin support.
|
2018-10-04 07:31:45 +00:00
|
|
|
enable_pepper_flash = true
|
2018-10-01 20:00:53 +00:00
|
|
|
}
|