Roll src/third_party/WebKit a3b4a2e:7441784 (svn 202551:202552)
[chromium-blink-merge.git] / build / config / sanitizers / BUILD.gn
blob319c272f2380e6a363ccf4d523d98c7477fc5472
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import("//build/config/sanitizers/sanitizers.gni")
7 # Contains the dependencies needed for sanitizers to link into executables and
8 # shared_libraries. Unconditionally depend upon this target as it is empty if
9 # |is_asan|, |is_lsan|, |is_tsan|, |is_msan| and |use_custom_libcxx| are false.
10 group("deps") {
11   if (is_asan || is_lsan || is_tsan || is_msan) {
12     public_configs = [ ":sanitizer_options_link_helper" ]
13     deps = [
14       ":options_sources",
15     ]
17     if (use_prebuilt_instrumented_libraries) {
18       deps += [ "//third_party/instrumented_libraries:deps" ]
19     }
20     if (use_custom_libcxx) {
21       deps += [ "//buildtools/third_party/libc++:libcxx_proxy" ]
22     }
23   }
26 config("sanitizer_options_link_helper") {
27   ldflags = [ "-Wl,-u_sanitizer_options_link_helper" ]
28   if (is_asan) {
29     ldflags += [ "-fsanitize=address" ]
30   }
31   if (is_lsan) {
32     ldflags += [ "-fsanitize=leak" ]
33   }
34   if (is_tsan) {
35     ldflags += [ "-fsanitize=thread" ]
36   }
37   if (is_msan) {
38     ldflags += [ "-fsanitize=memory" ]
39   }
42 source_set("options_sources") {
43   visibility = [
44     ":deps",
45     "//:gn_visibility",
46   ]
47   sources = [
48     "//build/sanitizers/sanitizer_options.cc",
49   ]
51   if (is_asan) {
52     sources += [ "//build/sanitizers/asan_suppressions.cc" ]
53   }
55   if (is_lsan) {
56     sources += [ "//build/sanitizers/lsan_suppressions.cc" ]
57   }
59   if (is_tsan) {
60     sources += [ "//build/sanitizers/tsan_suppressions.cc" ]
61   }