OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 # IMPORTANT: | 5 # IMPORTANT: |
6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
8 { | 8 { |
9 'variables': { | 9 'variables': { |
10 # .gyp files should set chromium_code to 1 if they build Chromium-specific | 10 # .gyp files should set chromium_code to 1 if they build Chromium-specific |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 # Define branding and buildtype on the basis of their settings within the | 78 # Define branding and buildtype on the basis of their settings within the |
79 # variables sub-dict above, unless overridden. | 79 # variables sub-dict above, unless overridden. |
80 'branding%': '<(branding)', | 80 'branding%': '<(branding)', |
81 'buildtype%': '<(buildtype)', | 81 'buildtype%': '<(buildtype)', |
82 'target_arch%': '<(target_arch)', | 82 'target_arch%': '<(target_arch)', |
83 'toolkit_views%': '<(toolkit_views)', | 83 'toolkit_views%': '<(toolkit_views)', |
84 'chromeos%': '<(chromeos)', | 84 'chromeos%': '<(chromeos)', |
85 'inside_chromium_build%': '<(inside_chromium_build)', | 85 'inside_chromium_build%': '<(inside_chromium_build)', |
86 'fastbuild%': '<(fastbuild)', | 86 'fastbuild%': '<(fastbuild)', |
87 | 87 |
| 88 # The release channel that this build targets. This is used to restrict |
| 89 # channel-specific build options, like which installer packages to create. |
| 90 # The default is 'all', which does no channel-specific filtering. |
| 91 'channel%': 'all', |
| 92 |
88 # Override chromium_mac_pch and set it to 0 to suppress the use of | 93 # Override chromium_mac_pch and set it to 0 to suppress the use of |
89 # precompiled headers on the Mac. Prefix header injection may still be | 94 # precompiled headers on the Mac. Prefix header injection may still be |
90 # used, but prefix headers will not be precompiled. This is useful when | 95 # used, but prefix headers will not be precompiled. This is useful when |
91 # using distcc to distribute a build to compile slaves that don't | 96 # using distcc to distribute a build to compile slaves that don't |
92 # share the same compiler executable as the system driving the compilation, | 97 # share the same compiler executable as the system driving the compilation, |
93 # because precompiled headers rely on pointers into a specific compiler | 98 # because precompiled headers rely on pointers into a specific compiler |
94 # executable's image. Setting this to 0 is needed to use an experimental | 99 # executable's image. Setting this to 0 is needed to use an experimental |
95 # Linux-Mac cross compiler distcc farm. | 100 # Linux-Mac cross compiler distcc farm. |
96 'chromium_mac_pch%': 1, | 101 'chromium_mac_pch%': 1, |
97 | 102 |
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
969 # and therefore SYMROOT, needs to be set at the project level. | 974 # and therefore SYMROOT, needs to be set at the project level. |
970 'SYMROOT': '<(DEPTH)/xcodebuild', | 975 'SYMROOT': '<(DEPTH)/xcodebuild', |
971 }, | 976 }, |
972 } | 977 } |
973 | 978 |
974 # Local Variables: | 979 # Local Variables: |
975 # tab-width:2 | 980 # tab-width:2 |
976 # indent-tabs-mode:nil | 981 # indent-tabs-mode:nil |
977 # End: | 982 # End: |
978 # vim: set expandtab tabstop=2 shiftwidth=2: | 983 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |