build: remove unused enable_tts build flag (#38420)
chore: remove unused enable_tts build flag Co-authored-by: Milan Burda <miburda@microsoft.com>
This commit is contained in:
parent
dec9a1d9db
commit
b6ef4a3929
5 changed files with 1 additions and 10 deletions
|
@ -38,10 +38,6 @@ bool IsViewApiEnabled() {
|
|||
return BUILDFLAG(ENABLE_VIEWS_API);
|
||||
}
|
||||
|
||||
bool IsTtsEnabled() {
|
||||
return BUILDFLAG(ENABLE_TTS);
|
||||
}
|
||||
|
||||
bool IsPrintingEnabled() {
|
||||
return BUILDFLAG(ENABLE_PRINTING);
|
||||
}
|
||||
|
@ -75,7 +71,6 @@ void Initialize(v8::Local<v8::Object> exports,
|
|||
dict.SetMethod("isFakeLocationProviderEnabled",
|
||||
&IsFakeLocationProviderEnabled);
|
||||
dict.SetMethod("isViewApiEnabled", &IsViewApiEnabled);
|
||||
dict.SetMethod("isTtsEnabled", &IsTtsEnabled);
|
||||
dict.SetMethod("isPrintingEnabled", &IsPrintingEnabled);
|
||||
dict.SetMethod("isPictureInPictureEnabled", &IsPictureInPictureEnabled);
|
||||
dict.SetMethod("isComponentBuild", &IsComponentBuild);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue