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

Side by Side Diff: build/toolchain/gcc_toolchain.gni

Issue 1361403002: Move goma/ccache logic to //build/toolchain/gcc_toolchain.gni (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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/toolchain/cros/BUILD.gn ('k') | build/toolchain/linux/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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/toolchain/ccache.gni")
8 import("//build/toolchain/goma.gni")
7 import("//build/toolchain/toolchain.gni") 9 import("//build/toolchain/toolchain.gni")
8 10
9 # This value will be inherited in the toolchain below. 11 # This value will be inherited in the toolchain below.
10 concurrent_links = exec_script("get_concurrent_links.py", [], "value") 12 concurrent_links = exec_script("get_concurrent_links.py", [], "value")
11 13
12 # This template defines a toolchain for something that works like gcc 14 # This template defines a toolchain for something that works like gcc
13 # (including clang). 15 # (including clang).
14 # 16 #
15 # It requires the following variables specifying the executables to run: 17 # It requires the following variables specifying the executables to run:
16 # - cc 18 # - cc
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 toolchain(target_name) { 79 toolchain(target_name) {
78 assert(defined(invoker.cc), "gcc_toolchain() must specify a \"cc\" value") 80 assert(defined(invoker.cc), "gcc_toolchain() must specify a \"cc\" value")
79 assert(defined(invoker.cxx), "gcc_toolchain() must specify a \"cxx\" value") 81 assert(defined(invoker.cxx), "gcc_toolchain() must specify a \"cxx\" value")
80 assert(defined(invoker.ar), "gcc_toolchain() must specify a \"ar\" value") 82 assert(defined(invoker.ar), "gcc_toolchain() must specify a \"ar\" value")
81 assert(defined(invoker.ld), "gcc_toolchain() must specify a \"ld\" value") 83 assert(defined(invoker.ld), "gcc_toolchain() must specify a \"ld\" value")
82 assert(defined(invoker.toolchain_cpu), 84 assert(defined(invoker.toolchain_cpu),
83 "gcc_toolchain() must specify a \"toolchain_cpu\"") 85 "gcc_toolchain() must specify a \"toolchain_cpu\"")
84 assert(defined(invoker.toolchain_os), 86 assert(defined(invoker.toolchain_os),
85 "gcc_toolchain() must specify a \"toolchain_os\"") 87 "gcc_toolchain() must specify a \"toolchain_os\"")
86 88
89 # Allow toolchains to avoid ccache/goma explicitly
brettw 2015/09/24 19:35:56 The phrasing of this comment seems weird to me, si
Dirk Pranke 2015/09/24 19:41:08 I'm not sure I understand you; we still want the c
tsniatowski 2015/09/24 19:48:26 This wouldn't do anything. As I understand it the
90 if (defined(invoker.use_ccache)) {
91 use_ccache = invoker.use_ccache
92 }
93 if (defined(invoker.use_goma)) {
94 use_goma = invoker.use_goma
95 }
96 if (use_goma) {
97 assert(!use_ccache, "Goma and ccache can't be used together.")
98 compiler_prefix = "$goma_dir/gomacc "
99 } else if (use_ccache) {
100 compiler_prefix = "ccache "
101 } else {
102 compiler_prefix = ""
103 }
104
87 # This define changes when the toolchain changes, forcing a rebuild. 105 # This define changes when the toolchain changes, forcing a rebuild.
88 # Nothing should ever use this define. 106 # Nothing should ever use this define.
89 if (defined(invoker.rebuild_define)) { 107 if (defined(invoker.rebuild_define)) {
90 rebuild_string = "-D" + invoker.rebuild_define + " " 108 rebuild_string = "-D" + invoker.rebuild_define + " "
91 } else { 109 } else {
92 rebuild_string = "" 110 rebuild_string = ""
93 } 111 }
94 112
95 # We can't do string interpolation ($ in strings) on things with dots in 113 cc = compiler_prefix + invoker.cc
96 # them. To allow us to use $cc below, for example, we create copies of 114 cxx = compiler_prefix + invoker.cxx
97 # these values in our scope.
98 cc = invoker.cc
99 cxx = invoker.cxx
100 ar = invoker.ar 115 ar = invoker.ar
101 ld = invoker.ld 116 ld = invoker.ld
102 if (defined(invoker.readelf)) { 117 if (defined(invoker.readelf)) {
103 readelf = invoker.readelf 118 readelf = invoker.readelf
104 } else { 119 } else {
105 readelf = "readelf" 120 readelf = "readelf"
106 } 121 }
107 if (defined(invoker.nm)) { 122 if (defined(invoker.nm)) {
108 nm = invoker.nm 123 nm = invoker.nm
109 } else { 124 } else {
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 is_lsan = false 347 is_lsan = false
333 is_msan = false 348 is_msan = false
334 is_syzyasan = false 349 is_syzyasan = false
335 is_tsan = false 350 is_tsan = false
336 } 351 }
337 } 352 }
338 353
339 forward_variables_from(invoker, [ "deps" ]) 354 forward_variables_from(invoker, [ "deps" ])
340 } 355 }
341 } 356 }
OLDNEW
« no previous file with comments | « build/toolchain/cros/BUILD.gn ('k') | build/toolchain/linux/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698