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/clang.gni") | 5 import("//build/toolchain/clang.gni") |
6 import("//build/toolchain/gcc_toolchain.gni") | 6 import("//build/toolchain/gcc_toolchain.gni") |
7 | 7 |
8 declare_args() { | 8 declare_args() { |
9 # The CrOS build system supports many different kinds of targets across | 9 # The CrOS build system supports many different kinds of targets across |
10 # many different architectures. Bringing your own toolchain is also supported, | 10 # many different architectures. Bringing your own toolchain is also supported, |
(...skipping 11 matching lines...) Expand all Loading... |
22 assert(cros_target_cc != "", "Must provide target CC.") | 22 assert(cros_target_cc != "", "Must provide target CC.") |
23 assert(cros_target_cxx != "", "Must provide target CXX.") | 23 assert(cros_target_cxx != "", "Must provide target CXX.") |
24 assert(cros_target_ar != "", "Must provide target AR.") | 24 assert(cros_target_ar != "", "Must provide target AR.") |
25 | 25 |
26 cc = "${cros_target_cc}" | 26 cc = "${cros_target_cc}" |
27 cxx = "${cros_target_cxx}" | 27 cxx = "${cros_target_cxx}" |
28 | 28 |
29 ar = "${cros_target_ar}" | 29 ar = "${cros_target_ar}" |
30 ld = cxx | 30 ld = cxx |
31 | 31 |
32 toolchain_cpu_arch = "${cpu_arch}" | 32 toolchain_cpu = "${target_cpu}" |
33 toolchain_os = "linux" | 33 toolchain_os = "linux" |
34 is_clang = is_clang | 34 is_clang = is_clang |
35 } | 35 } |
OLD | NEW |