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

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

Issue 132833002: Improves GN's make_global_settings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | Annotate | Revision Log
« no previous file with comments | « build/toolchain/android/BUILD.gn ('k') | build/toolchain/goma.gni » ('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 declare_args() { 5 declare_args() {
6 use_clang_type_profiler = false 6 use_clang_type_profiler = false
7 } 7 }
8 8
9 if (is_clang) { 9 if (is_clang) {
10 # Define "make_clang_dir" which is the directory relative to the source root 10 # Define "make_clang_dir" which is the directory relative to the source root
11 # of the clang directory we're using. This is used for defining the header 11 # of the clang directory we're using. This is used for defining the header
12 # for GYP so it must match the directory format of GYP (rather than using 12 # for GYP so it must match the directory format of GYP (rather than using
13 # GN-style "//..." paths). 13 # GN-style "//..." paths).
14 if (is_linux && use_clang_type_profiler) { 14 if (is_linux && use_clang_type_profiler) {
15 if (cpu_arch == "x64") { 15 if (cpu_arch == "x64") {
16 make_clang_dir = "third_party/llvm-allocated-type/Linux_x64" 16 make_clang_dir = "third_party/llvm-allocated-type/Linux_x64"
17 } else { 17 } else {
18 # 32-bit Clang is unsupported. It may not build. Put your 32-bit Clang in 18 # 32-bit Clang is unsupported. It may not build. Put your 32-bit Clang in
19 # this directory at your own risk if needed for some purpose (e.g. to 19 # this directory at your own risk if needed for some purpose (e.g. to
20 # compare 32-bit and 64-bit behavior like memory usage). Any failure by 20 # compare 32-bit and 64-bit behavior like memory usage). Any failure by
21 # this compiler should not close the tree. 21 # this compiler should not close the tree.
22 make_clang_dir = "third_party/llvm-allocated-type/Linux_ia32" 22 make_clang_dir = "third_party/llvm-allocated-type/Linux_ia32"
23 } 23 }
24 } else { 24 } else {
25 make_clang_dir = "third_party/llvm-build/Release+Asserts" 25 make_clang_dir = "third_party/llvm-build/Release+Asserts"
26 } 26 }
27 27
28 # This includes the array values but not the 'make_global_settings' name.
28 make_clang_global_settings = 29 make_clang_global_settings =
29 "'make_global_settings': [" +
30 "['CC', '$make_clang_dir/bin/clang']," + 30 "['CC', '$make_clang_dir/bin/clang']," +
31 "['CXX', '$make_clang_dir/bin/clang++']," + 31 "['CXX', '$make_clang_dir/bin/clang++']," +
32 "['CC.host', '\$(CC)']," + 32 "['CC.host', '\$(CC)']," +
33 "['CXX.host', '\$(CXX)']," + 33 "['CXX.host', '\$(CXX)'],"
34 "],"
35 } 34 }
OLDNEW
« no previous file with comments | « build/toolchain/android/BUILD.gn ('k') | build/toolchain/goma.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698