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

Side by Side Diff: runtime/tools/gyp/runtime-configurations.gypi

Issue 2614493002: GN: Add option to build with TSAN (Closed)
Patch Set: Add an option for MSAN as well Created 3 years, 11 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
« no previous file with comments | « runtime/bin/bin.gypi ('k') | tools/gn.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'dart_debug_optimization_level%': '2', 7 'dart_debug_optimization_level%': '2',
8 # If we have not set dart_io_support to 1 in Dart's all.gypi or common.gypi, 8 # If we have not set dart_io_support to 1 in Dart's all.gypi or common.gypi,
9 # then do not build the native libraries supporting dart:io. 9 # then do not build the native libraries supporting dart:io.
10 'dart_io_support%': 0, 10 'dart_io_support%': 0,
11 'dart_io_secure_socket%': 1, 11 'dart_io_secure_socket%': 1,
12 'asan%': 0, 12 'asan%': 0,
13 'msan%': 0, 13 'msan%': 0,
14 'tsan%': 0,
14 # Intel VTune related variables. 15 # Intel VTune related variables.
15 'dart_vtune_support%': 0, 16 'dart_vtune_support%': 0,
16 'conditions': [ 17 'conditions': [
17 ['OS=="linux"', { 18 ['OS=="linux"', {
18 'dart_vtune_root%': '/opt/intel/vtune_amplifier_xe', 19 'dart_vtune_root%': '/opt/intel/vtune_amplifier_xe',
19 }], 20 }],
20 ['OS=="win"', { 21 ['OS=="win"', {
21 'dart_vtune_root%': 'C:/Program Files (x86)/Intel/VTune Amplifier XE 201 3', 22 'dart_vtune_root%': 'C:/Program Files (x86)/Intel/VTune Amplifier XE 201 3',
22 }], 23 }],
23 ], 24 ],
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 125
125 'Dart_Product' : { 126 'Dart_Product' : {
126 'abstract': 1, 127 'abstract': 1,
127 'xcode_settings': { 128 'xcode_settings': {
128 'GCC_OPTIMIZATION_LEVEL': '3', 129 'GCC_OPTIMIZATION_LEVEL': '3',
129 } 130 }
130 }, 131 },
131 }, 132 },
132 }, 133 },
133 } 134 }
OLDNEW
« no previous file with comments | « runtime/bin/bin.gypi ('k') | tools/gn.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698