OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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/sysroot.gni") | 5 import("//build/config/sysroot.gni") |
6 import("//build/toolchain/gcc_toolchain.gni") | 6 import("//build/toolchain/gcc_toolchain.gni") |
7 | 7 |
8 clang_toolchain("clang_arm") { | 8 clang_toolchain("clang_arm") { |
9 toolchain_cpu = "arm" | 9 toolchain_cpu = "arm" |
10 toolchain_os = "linux" | 10 toolchain_os = "linux" |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 cc = "mipsel-linux-gnu-gcc" | 74 cc = "mipsel-linux-gnu-gcc" |
75 cxx = "mipsel-linux-gnu-g++" | 75 cxx = "mipsel-linux-gnu-g++" |
76 ar = "mipsel-linux-gnu-ar" | 76 ar = "mipsel-linux-gnu-ar" |
77 ld = cxx | 77 ld = cxx |
78 readelf = "mipsel-linux-gnu-readelf" | 78 readelf = "mipsel-linux-gnu-readelf" |
79 nm = "mipsel-linux-gnu-nm" | 79 nm = "mipsel-linux-gnu-nm" |
80 | 80 |
81 toolchain_cpu = "mipsel" | 81 toolchain_cpu = "mipsel" |
82 toolchain_os = "linux" | 82 toolchain_os = "linux" |
83 is_clang = false | 83 is_clang = false |
84 use_ccache = false | 84 cc_wrapper = "" |
85 use_goma = false | 85 use_goma = false |
86 } | 86 } |
OLD | NEW |