| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/toolchain/gcc_toolchain.gni") | 5 import("//build/toolchain/gcc_toolchain.gni") |
| 6 | 6 |
| 7 declare_args() { | 7 declare_args() { |
| 8 # The CrOS build system supports many different kinds of targets across | 8 # The CrOS build system supports many different kinds of targets across |
| 9 # many different architectures. Bringing your own toolchain is also supported, | 9 # many different architectures. Bringing your own toolchain is also supported, |
| 10 # so it's actually impossible to enumerate all toolchains for all targets | 10 # so it's actually impossible to enumerate all toolchains for all targets |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 cc = "${cros_target_cc}" | 25 cc = "${cros_target_cc}" |
| 26 cxx = "${cros_target_cxx}" | 26 cxx = "${cros_target_cxx}" |
| 27 | 27 |
| 28 ar = "${cros_target_ar}" | 28 ar = "${cros_target_ar}" |
| 29 ld = cxx | 29 ld = cxx |
| 30 | 30 |
| 31 toolchain_cpu = "${target_cpu}" | 31 toolchain_cpu = "${target_cpu}" |
| 32 toolchain_os = "linux" | 32 toolchain_os = "linux" |
| 33 is_clang = is_clang | 33 is_clang = is_clang |
| 34 use_ccache = false |
| 35 use_goma = false |
| 34 } | 36 } |
| OLD | NEW |