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

Side by Side Diff: build/sanitizers/sanitizers.gyp

Issue 1070853002: ASan: re-enable strict memcmp() checks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add suppressions Created 5 years, 8 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'sanitizer_options', 8 'target_name': 'sanitizer_options',
9 'type': 'static_library', 9 'type': 'static_library',
10 'toolsets': ['host', 'target'], 10 'toolsets': ['host', 'target'],
(...skipping 23 matching lines...) Expand all
34 ['tsan==1', { 34 ['tsan==1', {
35 'sources': [ 35 'sources': [
36 'tsan_suppressions.cc', 36 'tsan_suppressions.cc',
37 ], 37 ],
38 }], 38 }],
39 ['lsan==1', { 39 ['lsan==1', {
40 'sources': [ 40 'sources': [
41 'lsan_suppressions.cc', 41 'lsan_suppressions.cc',
42 ], 42 ],
43 }], 43 }],
44 ['asan==1', {
45 'sources': [
46 'asan_suppressions.cc',
jamesr 2015/05/06 00:01:28 shouldn't this file be added to the GN build as we
47 ],
48 }],
44 ], 49 ],
45 'cflags/': [ 50 'cflags/': [
46 ['exclude', '-fsanitize='], 51 ['exclude', '-fsanitize='],
47 ['exclude', '-fsanitize-'], 52 ['exclude', '-fsanitize-'],
48 ], 53 ],
49 'direct_dependent_settings': { 54 'direct_dependent_settings': {
50 'ldflags': [ 55 'ldflags': [
51 '-Wl,-u_sanitizer_options_link_helper', 56 '-Wl,-u_sanitizer_options_link_helper',
52 ], 57 ],
53 'target_conditions': [ 58 'target_conditions': [
(...skipping 24 matching lines...) Expand all
78 'files': [ 83 'files': [
79 '<(llvm_symbolizer_path)', 84 '<(llvm_symbolizer_path)',
80 ], 85 ],
81 }], 86 }],
82 }], 87 }],
83 ], 88 ],
84 }, 89 },
85 ], 90 ],
86 } 91 }
87 92
OLDNEW
« build/sanitizers/asan_suppressions.cc ('K') | « build/sanitizers/sanitizer_options.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698