Commit cee69063 authored by thestig's avatar thestig Committed by Commit bot

Reassign all of earthdok's TODOs and remove from OWNERS.

TBR=jln@chromium.org,thakis@chromium.org

Review URL: https://codereview.chromium.org/1646813004

Cr-Commit-Position: refs/heads/master@{#372260}
parent ab81d6c3
......@@ -4388,7 +4388,7 @@
['_toolset=="target"', {
'cflags': [
'-fsanitize=address',
# TODO(earthdok): Re-enable. http://crbug.com/427202
# TODO(eugenis): Re-enable. http://crbug.com/427202
#'-fsanitize-blacklist=<(asan_blacklist)',
],
'ldflags': [
......
glider@chromium.org
earthdok@chromium.org
eugenis@chromium.org
per-file tsan_suppressions.cc=*
per-file lsan_suppressions.cc=*
......@@ -25,7 +25,7 @@ char kLSanDefaultSuppressions[] =
// Leaks in Nvidia's libGL.
"leak:libGL.so\n"
// TODO(earthdok): revisit NSS suppressions after the switch to BoringSSL
// TODO(eugenis): revisit NSS suppressions after the switch to BoringSSL
// NSS leaks in CertDatabaseNSSTest tests. http://crbug.com/51988
"leak:net::NSSCertDatabase::ImportFromPKCS12\n"
"leak:net::NSSCertDatabase::ListCerts\n"
......
......@@ -237,14 +237,14 @@ bool Zygote::HandleRequestFromBrowser(int fd) {
if (len == 0 || (len == -1 && errno == ECONNRESET)) {
// EOF from the browser. We should die.
// TODO(earthdok): call __sanititizer_cov_dump() here to obtain code
// TODO(eugenis): call __sanititizer_cov_dump() here to obtain code
// coverage for the Zygote. Currently it's not possible because of
// confusion over who is responsible for closing the file descriptor.
for (int fd : extra_fds_) {
PCHECK(0 == IGNORE_EINTR(close(fd)));
}
#if !defined(SANITIZER_COVERAGE)
// TODO(earthdok): add watchdog thread before using this in builds not
// TODO(eugenis): add watchdog thread before using this in builds not
// using sanitizer coverage.
CHECK(extra_children_.empty());
#endif
......
......@@ -240,7 +240,7 @@ int PrintBackendCUPS::GetDests(cups_dest_t** dests) {
// than suppress. See http://crbug.com/176888#c7
// In theory any CUPS function can trigger this leak, but in
// PrintBackendCUPS, this is the most likely spot.
// TODO(earthdok): remove this once the leak is fixed.
// TODO(eugenis): remove this once the leak is fixed.
ANNOTATE_SCOPED_MEMORY_LEAK;
return cupsGetDests(dests);
} else {
......
......@@ -530,7 +530,7 @@
{
'package_name': 'nss',
'dependencies=': [
# TODO(earthdok): get rid of this dependency
# TODO(eugenis): get rid of this dependency
'<(_sanitizer_type)-libnspr4',
],
'patch': 'patches/nss.diff',
......@@ -630,7 +630,7 @@
'--disable-static',
# Without this flag there's a linking step that doesn't honor LDFLAGS
# and fails.
# TODO(earthdok): find a better fix.
# TODO(eugenis): find a better fix.
'--disable-gudev'
],
'pre_build': 'scripts/pre-build/udev.sh',
......@@ -726,7 +726,7 @@
'--enable-gtk-doc',
# --enable-introspection introduces a build step that attempts to run
# a just-built binary and crashes. Vala requires introspection.
# TODO(earthdok): find a better fix.
# TODO(eugenis): find a better fix.
'--disable-introspection',
'--disable-vala',
],
......
......@@ -183,7 +183,7 @@ class InstrumentedPackageBuilder(object):
self.shell_call('rm -rf %s' % self._working_dir)
def fix_rpaths(self, directory):
# TODO(earthdok): reimplement fix_rpaths.sh in Python.
# TODO(eugenis): reimplement fix_rpaths.sh in Python.
script = real_path('scripts/fix_rpaths.sh')
self.shell_call("%s %s" % (script, directory))
......
......@@ -11,7 +11,7 @@ function fix_rpath {
if [ -w "$1" ]
then
# Only attempt to fix RPATH if the entry actually exists.
# FIXME(earthdok): find out why zlib1g on Precise doesn't get RPATH set.
# FIXME(eugenis): find out why zlib1g on Precise doesn't get RPATH set.
if chrpath -l $1
then
echo "fix_rpaths.sh: fixing $1"
......@@ -19,7 +19,7 @@ function fix_rpath {
| sed s/RPATH=//g) $1
fi
else
# FIXME(earthdok): libcups2 DSOs are created non-writable, causing this
# FIXME(eugenis): libcups2 DSOs are created non-writable, causing this
# script to fail. As a temporary measure, ignore non-writable files.
echo "fix_rpaths.sh: skipping non-writable file $1"
fi
......
......@@ -12,7 +12,7 @@ then
sudo goobuntu-config set include_deb_src true
fi
# TODO(earthdok): find a way to pull the list from the build config.
# TODO(eugenis): find a way to pull the list from the build config.
common_packages="\
atk1.0 \
dee \
......
......@@ -12,7 +12,7 @@
{
'action_name': '<(_package_name)',
'inputs': [
# TODO(earthdok): reintroduce some sort of dependency
# TODO(eugenis): reintroduce some sort of dependency
# See http://crbug.com/343515
#'download_build_install.py',
],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment