15f9996aaSopenharmony_ci// Copyright 2015 The Chromium Authors. All rights reserved.
25f9996aaSopenharmony_ci// Use of this source code is governed by a BSD-style license that can be
35f9996aaSopenharmony_ci// found in the LICENSE file.
45f9996aaSopenharmony_ci
55f9996aaSopenharmony_ci// This file contains the default suppressions for AddressSanitizer.
65f9996aaSopenharmony_ci// It should only be used under very limited circumstances such as suppressing
75f9996aaSopenharmony_ci// a report caused by an interceptor call in a system-installed library.
85f9996aaSopenharmony_ci
95f9996aaSopenharmony_ci#if defined(ADDRESS_SANITIZER)
105f9996aaSopenharmony_ci
115f9996aaSopenharmony_ci// Please make sure the code below declares a single string variable
125f9996aaSopenharmony_ci// kASanDefaultSuppressions which contains ASan suppressions delimited by
135f9996aaSopenharmony_ci// newlines.
145f9996aaSopenharmony_cichar kASanDefaultSuppressions[] =
155f9996aaSopenharmony_ci// http://crbug.com/178677
165f9996aaSopenharmony_ci"interceptor_via_lib:libsqlite3.so\n"
175f9996aaSopenharmony_ci
185f9996aaSopenharmony_ci// PLEASE READ ABOVE BEFORE ADDING NEW SUPPRESSIONS.
195f9996aaSopenharmony_ci
205f9996aaSopenharmony_ci// End of suppressions.
215f9996aaSopenharmony_ci;  // Please keep this semicolon.
225f9996aaSopenharmony_ci
235f9996aaSopenharmony_ci#endif  // ADDRESS_SANITIZER
24