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

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

Issue 2188633004: Add a way for CrOS toolchains to set custom flags for the nacl bootstrap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge in changes to toolchain_args 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/toolchain/cros/BUILD.gn ('k') | 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 # CrOS builds must cross-compile on a Linux host for the actual CrOS 5 # CrOS builds must cross-compile on a Linux host for the actual CrOS
6 # device target. There are many different CrOS devices so the build 6 # device target. There are many different CrOS devices so the build
7 # system provides configuration variables that permit a CrOS build to 7 # system provides configuration variables that permit a CrOS build to
8 # control the cross-compilation tool chain. However, requiring such 8 # control the cross-compilation tool chain. However, requiring such
9 # fine-grain specification is tedious for build-bots and developers. 9 # fine-grain specification is tedious for build-bots and developers.
10 # Consequently, the CrOS build system defaults to a convenience 10 # Consequently, the CrOS build system defaults to a convenience
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 cros_v8_snapshot_cc = "gcc" 66 cros_v8_snapshot_cc = "gcc"
67 cros_v8_snapshot_cxx = "g++" 67 cros_v8_snapshot_cxx = "g++"
68 cros_v8_snapshot_ld = "" 68 cros_v8_snapshot_ld = ""
69 cros_v8_snapshot_nm = "" 69 cros_v8_snapshot_nm = ""
70 cros_v8_snapshot_readelf = "" 70 cros_v8_snapshot_readelf = ""
71 cros_v8_snapshot_extra_cflags = "" 71 cros_v8_snapshot_extra_cflags = ""
72 cros_v8_snapshot_extra_cppflags = "" 72 cros_v8_snapshot_extra_cppflags = ""
73 cros_v8_snapshot_extra_cxxflags = "" 73 cros_v8_snapshot_extra_cxxflags = ""
74 cros_v8_snapshot_extra_ldflags = "" 74 cros_v8_snapshot_extra_ldflags = ""
75 cros_v8_snapshot_is_clang = false 75 cros_v8_snapshot_is_clang = false
76
77 cros_nacl_bootstrap_extra_cflags = ""
78 cros_nacl_bootstrap_extra_cppflags = ""
79 cros_nacl_bootstrap_extra_cxxflags = ""
80 cros_nacl_bootstrap_extra_ldflags = ""
76 } 81 }
OLDNEW
« no previous file with comments | « build/toolchain/cros/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698