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

Side by Side Diff: build/toolchain/gcc_toolchain.gni

Issue 1374423002: Add UBsan vtpr support to GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-ubsan
Patch Set: Created 5 years, 2 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 import("//build/config/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/toolchain/ccache.gni") 7 import("//build/toolchain/ccache.gni")
8 import("//build/toolchain/goma.gni") 8 import("//build/toolchain/goma.gni")
9 import("//build/toolchain/toolchain.gni") 9 import("//build/toolchain/toolchain.gni")
10 10
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 ]) 347 ])
348 348
349 if (defined(invoker.clear_sanitizers) && invoker.clear_sanitizers) { 349 if (defined(invoker.clear_sanitizers) && invoker.clear_sanitizers) {
350 is_asan = false 350 is_asan = false
351 is_cfi = false 351 is_cfi = false
352 is_lsan = false 352 is_lsan = false
353 is_msan = false 353 is_msan = false
354 is_syzyasan = false 354 is_syzyasan = false
355 is_tsan = false 355 is_tsan = false
356 is_ubsan = false 356 is_ubsan = false
357 is_ubsan_vptr = false
357 } 358 }
358 } 359 }
359 360
360 forward_variables_from(invoker, [ "deps" ]) 361 forward_variables_from(invoker, [ "deps" ])
361 } 362 }
362 } 363 }
OLDNEW
« build/config/sanitizers/sanitizers.gni ('K') | « build/config/sanitizers/sanitizers.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698