| OLD | NEW |
| 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/config/v8_target_cpu.gni") | 8 import("//build/config/v8_target_cpu.gni") |
| 9 import("//build/toolchain/cc_wrapper.gni") | 9 import("//build/toolchain/cc_wrapper.gni") |
| 10 import("//build/toolchain/goma.gni") | 10 import("//build/toolchain/goma.gni") |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 is_ubsan_no_recover = false | 487 is_ubsan_no_recover = false |
| 488 is_ubsan_security = false | 488 is_ubsan_security = false |
| 489 is_ubsan_vptr = false | 489 is_ubsan_vptr = false |
| 490 msan_track_origins = 0 | 490 msan_track_origins = 0 |
| 491 sanitizer_coverage_flags = "" | 491 sanitizer_coverage_flags = "" |
| 492 use_cfi_diag = false | 492 use_cfi_diag = false |
| 493 use_custom_libcxx = false | 493 use_custom_libcxx = false |
| 494 use_drfuzz = false | 494 use_drfuzz = false |
| 495 use_libfuzzer = false | 495 use_libfuzzer = false |
| 496 use_prebuilt_instrumented_libraries = false | 496 use_prebuilt_instrumented_libraries = false |
| 497 use_locally_built_instrumented_libraries = false |
| 497 use_sanitizer_coverage = false | 498 use_sanitizer_coverage = false |
| 498 } | 499 } |
| 499 | 500 |
| 500 forward_variables_from(invoker, [ "deps" ]) | 501 forward_variables_from(invoker, [ "deps" ]) |
| 501 } | 502 } |
| 502 } | 503 } |
| 503 | 504 |
| 504 # This is a shorthand for gcc_toolchain instances based on the | 505 # This is a shorthand for gcc_toolchain instances based on the |
| 505 # Chromium-built version of Clang. Only the toolchain_cpu and | 506 # Chromium-built version of Clang. Only the toolchain_cpu and |
| 506 # toolchain_os variables need to be specified by the invoker, and | 507 # toolchain_os variables need to be specified by the invoker, and |
| (...skipping 30 matching lines...) Expand all Loading... |
| 537 "toolchain_os", | 538 "toolchain_os", |
| 538 "use_gold", | 539 "use_gold", |
| 539 "v8_toolchain_cpu", | 540 "v8_toolchain_cpu", |
| 540 ]) | 541 ]) |
| 541 | 542 |
| 542 if (defined(invoker.use_debug_fission)) { | 543 if (defined(invoker.use_debug_fission)) { |
| 543 use_debug_fission = invoker.use_debug_fission | 544 use_debug_fission = invoker.use_debug_fission |
| 544 } | 545 } |
| 545 } | 546 } |
| 546 } | 547 } |
| OLD | NEW |