Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: build/toolchain/nacl/BUILD.gn

Issue 2242893002: [MIPS] Adding NaCl/PNaCl support for mipsel to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix non Linux builds Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/config/features.gni ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « build/config/features.gni ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698