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

Side by Side Diff: gypfiles/standalone.gypi

Issue 2034643002: Remove has_valgrind.py - the bots now set this flag explicitly (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 | « gypfiles/has_valgrind.py ('k') | 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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 # TODO(machenbach): Only configured for windows. 106 # TODO(machenbach): Only configured for windows.
107 'fastbuild%': 0, 107 'fastbuild%': 0,
108 108
109 # goma settings. 109 # goma settings.
110 # 1 to use goma. 110 # 1 to use goma.
111 # If no gomadir is set, it uses the default gomadir. 111 # If no gomadir is set, it uses the default gomadir.
112 'use_goma%': 0, 112 'use_goma%': 0,
113 'gomadir%': '', 113 'gomadir%': '',
114 114
115 # Check if valgrind directories are present. 115 # Check if valgrind directories are present.
116 'has_valgrind%': '<!pymod_do_main(has_valgrind)', 116 'has_valgrind%': 0,
117 117
118 'test_isolation_mode%': 'noop', 118 'test_isolation_mode%': 'noop',
119 119
120 'conditions': [ 120 'conditions': [
121 # Set default gomadir. 121 # Set default gomadir.
122 ['OS=="win"', { 122 ['OS=="win"', {
123 'gomadir': 'c:\\goma\\goma-win', 123 'gomadir': 'c:\\goma\\goma-win',
124 }, { 124 }, {
125 'gomadir': '<!(/bin/echo -n ${HOME}/goma)', 125 'gomadir': '<!(/bin/echo -n ${HOME}/goma)',
126 }], 126 }],
(...skipping 1300 matching lines...) Expand 10 before | Expand all | Expand 10 after
1427 '-fsanitize=cfi-vcall', 1427 '-fsanitize=cfi-vcall',
1428 '-fsanitize=cfi-derived-cast', 1428 '-fsanitize=cfi-derived-cast',
1429 '-fsanitize=cfi-unrelated-cast', 1429 '-fsanitize=cfi-unrelated-cast',
1430 ], 1430 ],
1431 }], 1431 }],
1432 ], 1432 ],
1433 }, 1433 },
1434 }], 1434 }],
1435 ], 1435 ],
1436 } 1436 }
OLDNEW
« no previous file with comments | « gypfiles/has_valgrind.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698