Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(349)

Side by Side Diff: webrtc/build/sanitizers/lsan_suppressions_webrtc.cc

Issue 1313233005: purge nss files and dependencies (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/base/sslstreamadapterhelper.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 13 matching lines...) Expand all
24 // ============ Leaks in third-party code shared with Chromium ============= 24 // ============ Leaks in third-party code shared with Chromium =============
25 // These entries are copied from build/sanitizers/lsan_suppressions.cc in 25 // These entries are copied from build/sanitizers/lsan_suppressions.cc in
26 // Chromium. Please don't add new entries here unless they're present in there. 26 // Chromium. Please don't add new entries here unless they're present in there.
27 27
28 // False positives in libfontconfig. http://crbug.com/39050 28 // False positives in libfontconfig. http://crbug.com/39050
29 "leak:libfontconfig\n" 29 "leak:libfontconfig\n"
30 30
31 // Leaks in Nvidia's libGL. 31 // Leaks in Nvidia's libGL.
32 "leak:libGL.so\n" 32 "leak:libGL.so\n"
33 33
34 // TODO(earthdok): revisit NSS suppressions after the switch to BoringSSL
35 // NSS leaks in CertDatabaseNSSTest tests. http://crbug.com/51988
36 "leak:net::NSSCertDatabase::ImportFromPKCS12\n"
37 "leak:net::NSSCertDatabase::ListCerts\n"
38 "leak:net::NSSCertDatabase::DeleteCertAndKey\n"
39 "leak:crypto::ScopedTestNSSDB::ScopedTestNSSDB\n"
40 // Another leak due to not shutting down NSS properly. http://crbug.com/124445
41 "leak:error_get_my_stack\n"
42 // The NSS suppressions above will not fire when the fast stack unwinder is
43 // used, because it can't unwind through NSS libraries. Apply blanket
44 // suppressions for now.
45 "leak:libnssutil3\n"
46 "leak:libnspr4\n"
47 "leak:libnss3\n"
48 "leak:libplds4\n"
49 "leak:libnssckbi\n"
50
51 // XRandR has several one time leaks. 34 // XRandR has several one time leaks.
52 "leak:libxrandr\n" 35 "leak:libxrandr\n"
53 36
54 // xrandr leak. http://crbug.com/119677 37 // xrandr leak. http://crbug.com/119677
55 "leak:XRRFindDisplay\n" 38 "leak:XRRFindDisplay\n"
56 39
57 // ========== Leaks in third-party code not shared with Chromium =========== 40 // ========== Leaks in third-party code not shared with Chromium ===========
58 41
59 // None known so far. 42 // None known so far.
60 43
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 "leak:WebRtcSdpTest_SerializeSessionDescriptionWithBandwidth_Test::TestBody\n" 103 "leak:WebRtcSdpTest_SerializeSessionDescriptionWithBandwidth_Test::TestBody\n"
121 "leak:WebRtcSessionTest::SetLocalDescriptionExpectError\n" 104 "leak:WebRtcSessionTest::SetLocalDescriptionExpectError\n"
122 "leak:WebRtcSessionTest_TestAVOfferWithAudioOnlyAnswer_Test::TestBody\n" 105 "leak:WebRtcSessionTest_TestAVOfferWithAudioOnlyAnswer_Test::TestBody\n"
123 106
124 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS. 107 // PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS.
125 108
126 // End of suppressions. 109 // End of suppressions.
127 ; // Please keep this semicolon. 110 ; // Please keep this semicolon.
128 111
129 #endif // LEAK_SANITIZER 112 #endif // LEAK_SANITIZER
OLDNEW
« no previous file with comments | « webrtc/base/sslstreamadapterhelper.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698