OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 or targets should set chromium_code to 1 if they build | 10 # .gyp files or targets should set chromium_code to 1 if they build |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 'armv7%': 0, | 102 'armv7%': 0, |
103 | 103 |
104 # Set Neon compilation flags (only meaningful if armv7==1). | 104 # Set Neon compilation flags (only meaningful if armv7==1). |
105 'arm_neon%': 1, | 105 'arm_neon%': 1, |
106 | 106 |
107 # The system root for cross-compiles. Default: none. | 107 # The system root for cross-compiles. Default: none. |
108 'sysroot%': '', | 108 'sysroot%': '', |
109 | 109 |
110 # On Linux, we build with sse2 for Chromium builds. | 110 # On Linux, we build with sse2 for Chromium builds. |
111 'disable_sse2%': 0, | 111 'disable_sse2%': 0, |
| 112 |
| 113 # Chromoting compilation is disabled by default. Set to 1 to enable. |
| 114 'chromoting%': 0, |
112 }, | 115 }, |
113 | 116 |
114 # Define branding and buildtype on the basis of their settings within the | 117 # Define branding and buildtype on the basis of their settings within the |
115 # variables sub-dict above, unless overridden. | 118 # variables sub-dict above, unless overridden. |
116 'branding%': '<(branding)', | 119 'branding%': '<(branding)', |
117 'buildtype%': '<(buildtype)', | 120 'buildtype%': '<(buildtype)', |
118 'target_arch%': '<(target_arch)', | 121 'target_arch%': '<(target_arch)', |
119 'host_arch%': '<(host_arch)', | 122 'host_arch%': '<(host_arch)', |
120 'toolkit_views%': '<(toolkit_views)', | 123 'toolkit_views%': '<(toolkit_views)', |
121 'chromeos%': '<(chromeos)', | 124 'chromeos%': '<(chromeos)', |
122 'inside_chromium_build%': '<(inside_chromium_build)', | 125 'inside_chromium_build%': '<(inside_chromium_build)', |
123 'fastbuild%': '<(fastbuild)', | 126 'fastbuild%': '<(fastbuild)', |
124 'linux_fpic%': '<(linux_fpic)', | 127 'linux_fpic%': '<(linux_fpic)', |
125 'python_ver%': '<(python_ver)', | 128 'python_ver%': '<(python_ver)', |
126 'armv7%': '<(armv7)', | 129 'armv7%': '<(armv7)', |
127 'arm_neon%': '<(arm_neon)', | 130 'arm_neon%': '<(arm_neon)', |
128 'sysroot%': '<(sysroot)', | 131 'sysroot%': '<(sysroot)', |
129 'disable_sse2%': '<(disable_sse2)', | 132 'disable_sse2%': '<(disable_sse2)', |
| 133 'chromoting%': '<(chromoting)', |
130 | 134 |
131 # The release channel that this build targets. This is used to restrict | 135 # The release channel that this build targets. This is used to restrict |
132 # channel-specific build options, like which installer packages to create. | 136 # channel-specific build options, like which installer packages to create. |
133 # The default is 'all', which does no channel-specific filtering. | 137 # The default is 'all', which does no channel-specific filtering. |
134 'channel%': 'all', | 138 'channel%': 'all', |
135 | 139 |
136 # Override chromium_mac_pch and set it to 0 to suppress the use of | 140 # Override chromium_mac_pch and set it to 0 to suppress the use of |
137 # precompiled headers on the Mac. Prefix header injection may still be | 141 # precompiled headers on the Mac. Prefix header injection may still be |
138 # used, but prefix headers will not be precompiled. This is useful when | 142 # used, but prefix headers will not be precompiled. This is useful when |
139 # using distcc to distribute a build to compile slaves that don't | 143 # using distcc to distribute a build to compile slaves that don't |
(...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1370 # and therefore SYMROOT, needs to be set at the project level. | 1374 # and therefore SYMROOT, needs to be set at the project level. |
1371 'SYMROOT': '<(DEPTH)/xcodebuild', | 1375 'SYMROOT': '<(DEPTH)/xcodebuild', |
1372 }, | 1376 }, |
1373 } | 1377 } |
1374 | 1378 |
1375 # Local Variables: | 1379 # Local Variables: |
1376 # tab-width:2 | 1380 # tab-width:2 |
1377 # indent-tabs-mode:nil | 1381 # indent-tabs-mode:nil |
1378 # End: | 1382 # End: |
1379 # vim: set expandtab tabstop=2 shiftwidth=2: | 1383 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |