From 322fa22feda4ddf527e0d9adb40293ca96895016 Mon Sep 17 00:00:00 2001 From: "maruel@chromium.org" Date: Wed, 27 Oct 2010 11:24:44 +0000 Subject: [PATCH] Reenable breakpad in the DC by enabling .chromium.org suffix. TEST=none BUG=none Review URL: http://codereview.chromium.org/4176004 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@64049 0039d316-1c4b-4281-b951-d872f2087c98 --- breakpad.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/breakpad.py b/breakpad.py index b7d52bb833..bcfdb8da9c 100644 --- a/breakpad.py +++ b/breakpad.py @@ -74,8 +74,9 @@ def Register(): # Skip unit tests and we don't want anything from non-googler. if (not 'test' in sys.modules['__main__'].__file__ and - socket.getfqdn().endswith('.google.com') and - not 'NO_BREAKPAD' in os.environ): + not 'NO_BREAKPAD' in os.environ and + (socket.getfqdn().endswith('.google.com') or + socket.getfqdn().endswith('.chromium.org'))): Register() # Uncomment this line if you want to test it out.