H
hukadan
Guest
I just came accross this bug report. It seems that once installed, chromium downloads a blob without asking permission.
This blob is apparently related to hotword. It seems according to this commit message that this option is enabled by default but can be disabled. I do not use chromium myself but a fresh install (using public repo) confirmed that this blob was installed (at least it is how I interpret the information provided by chrome://voicesearch/ and the following output)
Could someone confirm this on his/her machine before bothering the freebsd-chromium mailing list ? Also, I am not a security expert so this blob could be of no concern but not knowing, I prefer to ask.
-- Edit --
Apparently the following line on the make.conf should solve the problem :
I am trying now..
This blob is apparently related to hotword. It seems according to this commit message that this option is enabled by default but can be disabled. I do not use chromium myself but a fresh install (using public repo) confirmed that this blob was installed (at least it is how I interpret the information provided by chrome://voicesearch/ and the following output)
Code:
$ ls -l /home/hukadan/.config/chromium/Default/Extensions/lccekmodgklaepjeofjdjpbminllajkg/0.3.0.5_0/_platform_specific/x86-64_
total 4386
-rw------- 1 hukadan hukadan 1181296 Jun 5 23:54 hotword-x86-64.nexe
-rw------- 1 hukadan hukadan 896976 Jun 5 23:54 hotword.data
Could someone confirm this on his/her machine before bothering the freebsd-chromium mailing list ? Also, I am not a security expert so this blob could be of no concern but not knowing, I prefer to ask.
-- Edit --
Apparently the following line on the make.conf should solve the problem :
Code:
.if ${.CURDIR:M*/www/chromium}
GYP_DEFINES+= enable_hotwording=0
.endif