95696c9456
* 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
53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
// Copyright (c) 2018 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "electron/buildflags/buildflags.h"
|
|
#include "native_mate/dictionary.h"
|
|
// clang-format off
|
|
#include "atom/common/node_includes.h" // NOLINT(build/include_alpha)
|
|
// clang-format on
|
|
|
|
namespace {
|
|
|
|
bool IsDesktopCapturerEnabled() {
|
|
return BUILDFLAG(ENABLE_DESKTOP_CAPTURER);
|
|
}
|
|
|
|
bool IsOffscreenRenderingEnabled() {
|
|
return BUILDFLAG(ENABLE_OSR);
|
|
}
|
|
|
|
bool IsPDFViewerEnabled() {
|
|
return BUILDFLAG(ENABLE_PDF_VIEWER);
|
|
}
|
|
|
|
bool IsFakeLocationProviderEnabled() {
|
|
return BUILDFLAG(OVERRIDE_LOCATION_PROVIDER);
|
|
}
|
|
|
|
bool IsViewApiEnabled() {
|
|
return BUILDFLAG(ENABLE_VIEW_API);
|
|
}
|
|
|
|
bool IsTtsEnabled() {
|
|
return BUILDFLAG(ENABLE_TTS);
|
|
}
|
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
v8::Local<v8::Value> unused,
|
|
v8::Local<v8::Context> context,
|
|
void* priv) {
|
|
mate::Dictionary dict(context->GetIsolate(), exports);
|
|
dict.SetMethod("isDesktopCapturerEnabled", &IsDesktopCapturerEnabled);
|
|
dict.SetMethod("isOffscreenRenderingEnabled", &IsOffscreenRenderingEnabled);
|
|
dict.SetMethod("isPDFViewerEnabled", &IsPDFViewerEnabled);
|
|
dict.SetMethod("isFakeLocationProviderEnabled",
|
|
&IsFakeLocationProviderEnabled);
|
|
dict.SetMethod("isViewApiEnabled", &IsViewApiEnabled);
|
|
dict.SetMethod("isTtsEnabled", &IsTtsEnabled);
|
|
}
|
|
|
|
} // namespace
|
|
|
|
NODE_BUILTIN_MODULE_CONTEXT_AWARE(atom_common_features, Initialize)
|