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

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

Issue 2103683002: Add GN rules for building instrumented libraries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/clang/clang.gni") 5 import("//build/config/clang/clang.gni")
6 import("//build/config/nacl/config.gni") 6 import("//build/config/nacl/config.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/toolchain/cc_wrapper.gni") 8 import("//build/toolchain/cc_wrapper.gni")
9 import("//build/toolchain/goma.gni") 9 import("//build/toolchain/goma.gni")
10 import("//build/toolchain/toolchain.gni") 10 import("//build/toolchain/toolchain.gni")
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 is_ubsan_no_recover = false 478 is_ubsan_no_recover = false
479 is_ubsan_security = false 479 is_ubsan_security = false
480 is_ubsan_vptr = false 480 is_ubsan_vptr = false
481 msan_track_origins = 0 481 msan_track_origins = 0
482 sanitizer_coverage_flags = "" 482 sanitizer_coverage_flags = ""
483 use_cfi_diag = false 483 use_cfi_diag = false
484 use_custom_libcxx = false 484 use_custom_libcxx = false
485 use_drfuzz = false 485 use_drfuzz = false
486 use_libfuzzer = false 486 use_libfuzzer = false
487 use_prebuilt_instrumented_libraries = false 487 use_prebuilt_instrumented_libraries = false
488 use_locally_built_instrumented_libraries = false
488 use_sanitizer_coverage = false 489 use_sanitizer_coverage = false
489 } 490 }
490 491
491 forward_variables_from(invoker, [ "deps" ]) 492 forward_variables_from(invoker, [ "deps" ])
492 } 493 }
493 } 494 }
494 495
495 # This is a shorthand for gcc_toolchain instances based on the 496 # This is a shorthand for gcc_toolchain instances based on the
496 # Chromium-built version of Clang. Only the toolchain_cpu and 497 # Chromium-built version of Clang. Only the toolchain_cpu and
497 # toolchain_os variables need to be specified by the invoker, and 498 # toolchain_os variables need to be specified by the invoker, and
(...skipping 29 matching lines...) Expand all
527 "toolchain_os", 528 "toolchain_os",
528 "use_gold", 529 "use_gold",
529 "strip", 530 "strip",
530 ]) 531 ])
531 532
532 if (defined(invoker.use_debug_fission)) { 533 if (defined(invoker.use_debug_fission)) {
533 use_debug_fission = invoker.use_debug_fission 534 use_debug_fission = invoker.use_debug_fission
534 } 535 }
535 } 536 }
536 } 537 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698