aboutsummaryrefslogtreecommitdiff
path: root/gn/standalone/sanitizers/sanitizers.gni
blob: 95f40d11f1e6963d64024957da480167db2b84da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright (C) 2017 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import("//gn/standalone/android.gni")
import("//gn/standalone/sanitizers/vars.gni")
import("//gn/standalone/toolchain/llvm.gni")

declare_args() {
  sanitizer_lib_base_name_ = ""
  if (is_asan || is_tsan || is_ubsan) {
    if (is_asan) {
      sanitizer_lib_base_name_ = "clang_rt.asan"
    }
    if (is_tsan) {
      sanitizer_lib_base_name_ = "clang_rt.tsan"
    }
    if (is_ubsan) {
      sanitizer_lib_base_name_ = "clang_rt.ubsan"
      if (is_android || is_linux) {
        sanitizer_lib_base_name_ += "_standalone"
      }
    }
  }
}

declare_args() {
  sanitizer_lib_dir = ""
  sanitizer_lib = ""
  sanitizer_lib_dir_is_static = false
  if (sanitizer_lib_base_name_ != "") {
    if (is_mac) {
      sanitizer_lib = "${sanitizer_lib_base_name_}_osx_dynamic"
      sanitizer_lib_dir = mac_clangrt_dir
    }
    if (is_linux) {
      sanitizer_lib = "lib${sanitizer_lib_base_name_}-x86_64.a"
      sanitizer_lib_dir_is_static = true
      sanitizer_lib_dir = linux_clangrt_dir
    }
    if (is_android) {
      sanitizer_lib = "${sanitizer_lib_base_name_}-${android_llvm_arch}-android"
      sanitizer_lib_dir = android_clangrt_dir
    }
  }
}

using_sanitizer = is_asan || is_lsan || is_tsan || is_msan || is_ubsan
assert(!using_sanitizer || is_clang, "is_*san requires is_clang=true'")
assert(!is_msan || is_linux, "msan only supported on linux")
assert(!is_tsan || (is_linux || is_mac), "tsan only supported on linux and mac")