TSan v2 deadlock suppressions.

After rolling chromium_revision in r6516 it seems
TSan v2 turned on deadlock detection by default.
This caused a collection of tests to start failing.
This CL suppresses these failures awaiting further
investigation.

TBR=pbos@webrtc.org
BUG=3509
TEST=Tests passing local execution on Linux using the
reproduction steps in the bug.

Review URL: https://webrtc-codereview.appspot.com/18609004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@6519 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/.gitignore b/.gitignore
index 3d2c376..b0c2f90 100644
--- a/.gitignore
+++ b/.gitignore
@@ -55,6 +55,7 @@
 /third_party/asan
 /third_party/binutils
 /third_party/clang_format
+/third_party/colorama
 /third_party/cygwin
 /third_party/directxsdk
 /third_party/expat
diff --git a/tools/valgrind-webrtc/tsan_v2/suppressions.txt b/tools/valgrind-webrtc/tsan_v2/suppressions.txt
index 2591157..e783cd3 100644
--- a/tools/valgrind-webrtc/tsan_v2/suppressions.txt
+++ b/tools/valgrind-webrtc/tsan_v2/suppressions.txt
@@ -35,3 +35,12 @@
 # third_party/usrsctp
 # TODO(jiayl): https://code.google.com/p/webrtc/issues/detail?id=3492
 race:third_party/usrsctp/usrsctplib/user_sctp_timer_iterate.c
+
+# Potential deadlocks detected after roll in r6516.
+# https://code.google.com/p/webrtc/issues/detail?id=3509
+deadlock:talk/base/criticalsection.h
+deadlock:talk/base/sigslot.h
+deadlock:webrtc/system_wrappers/source/critical_section_posix.cc
+deadlock:webrtc/system_wrappers/source/rw_lock_posix.cc
+deadlock:webrtc/system_wrappers/source/thread_posix.cc
+