加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
goanna-gre-prefs.diff 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
diff --git a/modules/libpref/Makefile.in b/modules/libpref/Makefile.in
index f8965daaf..159d98c7d 100644
--- a/modules/libpref/Makefile.in
+++ b/modules/libpref/Makefile.in
@@ -26,6 +26,10 @@ grepref_files += $(topsrcdir)/mobile/android/chrome/content/healthreport-prefs.j
endif
endif
+GRE_BUILDID := $(strip $(firstword $(shell cat $(DEPTH)/config/buildid 2>/dev/null)))
+
+DEFINES += -DGRE_BUILDID=$(GRE_BUILDID)
+
goanna.js: $(grepref_files)
$(call py_action,preprocessor,$(PREF_PPFLAGS) $(DEFINES) $(ACDEFINES) $(XULPPFLAGS) $^ -o $@)
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js
index 6551eb596..e96102c48 100644
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -4907,3 +4907,11 @@ pref("dom.secureelement.enabled", false);
// Turn rewriting of youtube embeds on/off
pref("plugins.rewrite_youtube_embeds", true);
+
+// additional
+lock_pref("platform.name", "Goanna");
+#filter substitution
+lock_pref("platform.version", @MOZILLA_VERSION@);
+lock_pref("platform.buildid", "@GRE_BUILDID@");
+#unfilter substitution
+
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化