mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
* chore: add tts patch and buildflag, makes tts work again * chore: add tts patch and buildflag, makes tts work again * fix: make things compile * build: add relevant tts files for linux * fix: update patch and patch description, should now compile on mac * build: move chrome specific sources under chromium_src:chrome target * build: enable_extensions again We are depending on them, check `//electron/chromium_src:chrome` target for more info. * fix: update tts.patch to receive notifications about browser context destruction * fix: extend browser process from chrome layer The global state g_browser_process is shared between //chrome and //electron. * spec: add basic speech synthesis test * spec: skip speech tests on ci * build: fix compilation on windows
28 lines
669 B
Plaintext
28 lines
669 B
Plaintext
# 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_view_api = false
|
|
|
|
enable_pdf_viewer = false
|
|
|
|
enable_tts = 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 flash plugin support.
|
|
enable_pepper_flash = true
|
|
}
|