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

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

Issue 138483002: [MIPS] Define gcc_toolchain in BUILD.gn for Chromium-Linux (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 11 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("../clang.gni") 5 import("../clang.gni")
6 import("../goma.gni") 6 import("../goma.gni")
7 import("../gcc_toolchain.gni") 7 import("../gcc_toolchain.gni")
8 8
9 if (is_gyp) { 9 if (is_gyp) {
10 # Set the compilers for GYP to use. This logic is only relevant to GYP where 10 # Set the compilers for GYP to use. This logic is only relevant to GYP where
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 64
65 gcc_toolchain("x64") { 65 gcc_toolchain("x64") {
66 cc = "gcc" 66 cc = "gcc"
67 cxx = "g++" 67 cxx = "g++"
68 ar = "ar" 68 ar = "ar"
69 ld = cxx 69 ld = cxx
70 70
71 toolchain_cpu_arch = "x64" 71 toolchain_cpu_arch = "x64"
72 toolchain_os = "linux" 72 toolchain_os = "linux"
73 } 73 }
74
75 # MIPS -----------------------------------------------------------------------
76
77 gcc_toolchain("mipsel") {
78 cc = "mipsel-linux-gnu-gcc"
79 cxx = "mipsel-linux-gnu-g++"
80 ar = "mipsel-linux-gnu-ar"
81 ld = cxx
82
83 toolchain_cpu_arch = "mipsel"
84 toolchain_os = "linux"
85 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698