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

Side by Side Diff: gypfiles/isolate.gypi

Issue 2667993002: Revert of [test] Add back lsan leak detection (Closed)
Patch Set: Created 3 years, 10 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 | « gni/isolate.gni ('k') | tools/memory/lsan/suppressions.txt » ('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 2015 the V8 project authors. All rights reserved. 1 # Copyright 2015 the V8 project authors. All rights reserved.
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # This file is meant to be included into a target to provide a rule 6 # This file is meant to be included into a target to provide a rule
7 # to "build" .isolate files into a .isolated file. 7 # to "build" .isolate files into a .isolated file.
8 # 8 #
9 # To use this, create a gyp target with the following form: 9 # To use this, create a gyp target with the following form:
10 # 'conditions': [ 10 # 'conditions': [
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 '--path-variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)', 68 '--path-variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
69 69
70 '--config-variable', 'CONFIGURATION_NAME=<(CONFIGURATION_NAME)', 70 '--config-variable', 'CONFIGURATION_NAME=<(CONFIGURATION_NAME)',
71 '--config-variable', 'OS=<(OS)', 71 '--config-variable', 'OS=<(OS)',
72 '--config-variable', 'asan=<(asan)', 72 '--config-variable', 'asan=<(asan)',
73 '--config-variable', 'cfi_vptr=<(cfi_vptr)', 73 '--config-variable', 'cfi_vptr=<(cfi_vptr)',
74 '--config-variable', 'gcmole=<(gcmole)', 74 '--config-variable', 'gcmole=<(gcmole)',
75 '--config-variable', 'has_valgrind=<(has_valgrind)', 75 '--config-variable', 'has_valgrind=<(has_valgrind)',
76 '--config-variable', 'icu_use_data_file_flag=<(icu_use_data_file_flag)', 76 '--config-variable', 'icu_use_data_file_flag=<(icu_use_data_file_flag)',
77 '--config-variable', 'is_gn=0', 77 '--config-variable', 'is_gn=0',
78 '--config-variable', 'lsan=<(lsan)',
79 '--config-variable', 'msan=<(msan)', 78 '--config-variable', 'msan=<(msan)',
80 '--config-variable', 'tsan=<(tsan)', 79 '--config-variable', 'tsan=<(tsan)',
81 '--config-variable', 'coverage=<(coverage)', 80 '--config-variable', 'coverage=<(coverage)',
82 '--config-variable', 'sanitizer_coverage=<(sanitizer_coverage)', 81 '--config-variable', 'sanitizer_coverage=<(sanitizer_coverage)',
83 '--config-variable', 'component=<(component)', 82 '--config-variable', 'component=<(component)',
84 '--config-variable', 'target_arch=<(target_arch)', 83 '--config-variable', 'target_arch=<(target_arch)',
85 '--config-variable', 'v8_enable_inspector=<(v8_enable_inspector)', 84 '--config-variable', 'v8_enable_inspector=<(v8_enable_inspector)',
86 '--config-variable', 'v8_use_external_startup_data=<(v8_use_external_sta rtup_data)', 85 '--config-variable', 'v8_use_external_startup_data=<(v8_use_external_sta rtup_data)',
87 '--config-variable', 'v8_use_snapshot=<(v8_use_snapshot)', 86 '--config-variable', 'v8_use_snapshot=<(v8_use_snapshot)',
88 ], 87 ],
89 'conditions': [ 88 'conditions': [
90 ['OS=="win"', { 89 ['OS=="win"', {
91 'action': [ 90 'action': [
92 '--config-variable', 'msvs_version=2013', 91 '--config-variable', 'msvs_version=2013',
93 ], 92 ],
94 }, { 93 }, {
95 'action': [ 94 'action': [
96 '--config-variable', 'msvs_version=0', 95 '--config-variable', 'msvs_version=0',
97 ], 96 ],
98 }], 97 }],
99 ], 98 ],
100 }, 99 },
101 ], 100 ],
102 } 101 }
OLDNEW
« no previous file with comments | « gni/isolate.gni ('k') | tools/memory/lsan/suppressions.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698