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

Side by Side Diff: third_party/instrumented_libraries/instrumented_libraries.gyp

Issue 179403005: Add TSan to instrumented_libraries.gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # Default value for all libraries. 6 # Default value for all libraries.
7 'custom_configure_flags': '', 7 'custom_configure_flags': '',
8 'custom_c_compiler_flags': '', 8 'custom_c_compiler_flags': '',
9 'custom_cxx_compiler_flags': '', 9 'custom_cxx_compiler_flags': '',
10 'custom_linker_flags': '', 10 'custom_linker_flags': '',
11 'run_before_build': '', 11 'run_before_build': '',
12 12
13 'variables': { 13 'variables': {
14 'verbose_libraries_build%': 0, 14 'verbose_libraries_build%': 0,
15 }, 15 },
16 'conditions': [ 16 'conditions': [
17 ['asan==1', { 17 ['asan==1', {
18 'sanitizer_type': 'asan', 18 'sanitizer_type': 'asan',
19 }], 19 }],
20 ['msan==1', { 20 ['msan==1', {
21 'sanitizer_type': 'msan', 21 'sanitizer_type': 'msan',
22 }], 22 }],
23 ['tsan==1', {
24 'sanitizer_type': 'tsan',
25 }],
23 ['verbose_libraries_build==1', { 26 ['verbose_libraries_build==1', {
24 'verbose_libraries_build_flag': '--verbose', 27 'verbose_libraries_build_flag': '--verbose',
25 }, { 28 }, {
26 'verbose_libraries_build_flag': '', 29 'verbose_libraries_build_flag': '',
27 }], 30 }],
28 ['use_goma==1', { 31 ['use_goma==1', {
29 'cc': '<(gomadir)/gomacc <!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/c lang', 32 'cc': '<(gomadir)/gomacc <!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/c lang',
30 'cxx': '<(gomadir)/gomacc <!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/ clang++', 33 'cxx': '<(gomadir)/gomacc <!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/ clang++',
31 }, { 34 }, {
32 'cc': '<!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/clang', 35 'cc': '<!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/clang',
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 ], 358 ],
356 'includes': ['standard_instrumented_library_target.gypi'], 359 'includes': ['standard_instrumented_library_target.gypi'],
357 }, 360 },
358 { 361 {
359 'library_name': 'libtasn1-3', 362 'library_name': 'libtasn1-3',
360 'dependencies=': [], 363 'dependencies=': [],
361 'includes': ['standard_instrumented_library_target.gypi'], 364 'includes': ['standard_instrumented_library_target.gypi'],
362 }, 365 },
363 ], 366 ],
364 } 367 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698