| 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/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/cc_wrapper.gni") | 7 import("//build/toolchain/cc_wrapper.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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 | 456 |
| 457 readelf = "${toolprefix}readelf" | 457 readelf = "${toolprefix}readelf" |
| 458 ar = "${toolprefix}ar" | 458 ar = "${toolprefix}ar" |
| 459 nm = "${toolprefix}nm" | 459 nm = "${toolprefix}nm" |
| 460 | 460 |
| 461 forward_variables_from(invoker, | 461 forward_variables_from(invoker, |
| 462 [ | 462 [ |
| 463 "toolchain_cpu", | 463 "toolchain_cpu", |
| 464 "toolchain_os", | 464 "toolchain_os", |
| 465 "use_gold", | 465 "use_gold", |
| 466 "strip", |
| 466 ]) | 467 ]) |
| 467 } | 468 } |
| 468 } | 469 } |
| OLD | NEW |