Skip to content
GitLab
Menu
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
1f268a74
Commit
1f268a74
authored
Apr 10, 2019
by
Alex Catarineu
Committed by
Matthew Finkel
Nov 13, 2020
Browse files
Bug 28369: Stop shipping pingsender executable
parent
c147ba01
Changes
6
Hide whitespace changes
Inline
Side-by-side
browser/app/macbuild/Contents/MacOS-files.in
View file @
1f268a74
...
...
@@ -16,7 +16,6 @@
#if defined(MOZ_CRASHREPORTER)
/minidump-analyzer
#endif
/pingsender
/pk12util
/ssltunnel
/xpcshell
...
...
browser/installer/package-manifest.in
View file @
1f268a74
...
...
@@ -448,10 +448,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 @
1f268a74
...
...
@@ -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 @
1f268a74
...
...
@@ -423,7 +423,6 @@ class LinuxArtifactJob(ArtifactJob):
'{product}/{product}'
,
'{product}/{product}-bin'
,
'{product}/minidump-analyzer'
,
'{product}/pingsender'
,
'{product}/plugin-container'
,
'{product}/updater'
,
'{product}/**/*.so'
,
...
...
@@ -485,7 +484,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 @
1f268a74
...
...
@@ -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 @
1f268a74
...
...
@@ -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
.
Attach a 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