| OLD | NEW |
| 1 # Copyright (c) 2014 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2014 The Native Client 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/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
| 7 import("//build/toolchain/nacl_toolchain.gni") | 7 import("//build/toolchain/nacl_toolchain.gni") |
| 8 | 8 |
| 9 # Add the toolchain revision as a preprocessor define so that sources are | 9 # Add the toolchain revision as a preprocessor define so that sources are |
| 10 # rebuilt when a toolchain is updated. | 10 # rebuilt when a toolchain is updated. |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 toolchain_tuple = "x86_64-nacl" | 267 toolchain_tuple = "x86_64-nacl" |
| 268 } | 268 } |
| 269 | 269 |
| 270 nacl_clang_toolchains("x64") { | 270 nacl_clang_toolchains("x64") { |
| 271 toolchain_tuple = "x86_64-nacl" | 271 toolchain_tuple = "x86_64-nacl" |
| 272 } | 272 } |
| 273 | 273 |
| 274 nacl_clang_toolchains("arm") { | 274 nacl_clang_toolchains("arm") { |
| 275 toolchain_tuple = "arm-nacl" | 275 toolchain_tuple = "arm-nacl" |
| 276 } | 276 } |
| 277 |
| 278 nacl_clang_toolchains("mipsel") { |
| 279 toolchain_tuple = "mipsel-nacl" |
| 280 } |
| OLD | NEW |