OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |