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

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

Issue 1397953002: GN: Fix NaCl IRT build options (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review nit 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
« no previous file with comments | « build/config/nacl/config.gni ('k') | build/toolchain/nacl/BUILD.gn » ('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 (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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 # These values need to be passed through unchanged. 341 # These values need to be passed through unchanged.
342 target_os = target_os 342 target_os = target_os
343 target_cpu = target_cpu 343 target_cpu = target_cpu
344 344
345 forward_variables_from(invoker, 345 forward_variables_from(invoker,
346 [ 346 [
347 "is_clang", 347 "is_clang",
348 "is_component_build", 348 "is_component_build",
349 "is_nacl_glibc", 349 "is_nacl_glibc",
350 "use_gold", 350 "use_gold",
351 "symbol_level",
351 ]) 352 ])
352 353
353 if (defined(invoker.clear_sanitizers) && invoker.clear_sanitizers) { 354 if (defined(invoker.clear_sanitizers) && invoker.clear_sanitizers) {
354 is_asan = false 355 is_asan = false
355 is_cfi = false 356 is_cfi = false
356 is_lsan = false 357 is_lsan = false
357 is_msan = false 358 is_msan = false
358 is_syzyasan = false 359 is_syzyasan = false
359 is_tsan = false 360 is_tsan = false
360 is_ubsan = false 361 is_ubsan = false
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 nm = "${toolprefix}nm" 397 nm = "${toolprefix}nm"
397 398
398 forward_variables_from(invoker, 399 forward_variables_from(invoker,
399 [ 400 [
400 "toolchain_cpu", 401 "toolchain_cpu",
401 "toolchain_os", 402 "toolchain_os",
402 "use_gold", 403 "use_gold",
403 ]) 404 ])
404 } 405 }
405 } 406 }
OLDNEW
« no previous file with comments | « build/config/nacl/config.gni ('k') | build/toolchain/nacl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698