Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Applications
Tor Browser
Commits
1ed238ea
Commit
1ed238ea
authored
Apr 10, 2019
by
Alex Catarineu
Committed by
Matthew Finkel
Feb 05, 2021
Browse files
Bug 28369: Stop shipping pingsender executable
parent
78a902b2
Changes
6
Hide whitespace changes
Inline
Side-by-side
browser/app/macbuild/Contents/MacOS-files.in
View file @
1ed238ea
...
...
@@ -13,7 +13,6 @@
#if defined(MOZ_CRASHREPORTER)
/minidump-analyzer
#endif
/pingsender
/pk12util
/ssltunnel
/xpcshell
...
...
browser/installer/package-manifest.in
View file @
1ed238ea
...
...
@@ -444,10 +444,6 @@ bin/libfreebl_64int_3.so
@BINPATH@/minidump-analyzer@BIN_SUFFIX@
#endif
; [ Ping Sender ]
;
@BINPATH@/pingsender@BIN_SUFFIX@
; Shutdown Terminator
@RESPATH@/components/terminator.manifest
...
...
browser/installer/windows/nsis/shared.nsh
View file @
1ed238ea
...
...
@@ -1472,7 +1472,6 @@ ${EndIf}
Push "crashreporter.exe"
Push "default-browser-agent.exe"
Push "minidump-analyzer.exe"
Push "pingsender.exe"
Push "updater.exe"
Push "updateagent.exe"
Push "${FileMainEXE}"
...
...
python/mozbuild/mozbuild/artifacts.py
View file @
1ed238ea
...
...
@@ -420,7 +420,6 @@ class LinuxArtifactJob(ArtifactJob):
'{product}/{product}'
,
'{product}/{product}-bin'
,
'{product}/minidump-analyzer'
,
'{product}/pingsender'
,
'{product}/plugin-container'
,
'{product}/updater'
,
'{product}/**/*.so'
,
...
...
@@ -482,7 +481,6 @@ class MacArtifactJob(ArtifactJob):
'libosclientcerts.dylib'
,
'libsoftokn3.dylib'
,
'minidump-analyzer'
,
'pingsender'
,
'plugin-container.app/Contents/MacOS/plugin-container'
,
'updater.app/Contents/MacOS/org.mozilla.updater'
,
# 'xpcshell',
...
...
toolkit/components/telemetry/app/TelemetrySend.jsm
View file @
1ed238ea
...
...
@@ -1578,23 +1578,6 @@ var TelemetrySendImpl = {
},
runPingSender(pings, observer) {
if (AppConstants.platform === "android") {
throw Components.Exception("", Cr.NS_ERROR_NOT_IMPLEMENTED);
}
const exeName =
AppConstants.platform === "win" ? "pingsender.exe" : "pingsender";
let exe = Services.dirsvc.get("GreBinD", Ci.nsIFile);
exe.append(exeName);
let params = pings.flatMap(ping => [ping.url, ping.path]);
let process = Cc["@mozilla.org/process/util;1"].createInstance(
Ci.nsIProcess
);
process.init(exe);
process.startHidden = true;
process.noShell = true;
process.runAsync(params, params.length, observer);
throw Components.Exception("", Cr.NS_ERROR_NOT_IMPLEMENTED);
},
};
toolkit/components/telemetry/moz.build
View file @
1ed238ea
...
...
@@ -8,10 +8,6 @@ include('/ipc/chromium/chromium-config.mozbuild')
FINAL_LIBRARY
=
'xul'
DIRS
=
[
'pingsender'
,
]
DEFINES
[
'MOZ_APP_VERSION'
]
=
'"%s"'
%
CONFIG
[
'MOZ_APP_VERSION'
]
LOCAL_INCLUDES
+=
[
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment