| 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 expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
| 10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 'inside_chromium_build%': '<(inside_chromium_build)', | 173 'inside_chromium_build%': '<(inside_chromium_build)', |
| 174 'fastbuild%': '<(fastbuild)', | 174 'fastbuild%': '<(fastbuild)', |
| 175 'python_ver%': '<(python_ver)', | 175 'python_ver%': '<(python_ver)', |
| 176 'armv7%': '<(armv7)', | 176 'armv7%': '<(armv7)', |
| 177 'arm_neon%': '<(arm_neon)', | 177 'arm_neon%': '<(arm_neon)', |
| 178 'sysroot%': '<(sysroot)', | 178 'sysroot%': '<(sysroot)', |
| 179 'disable_sse2%': '<(disable_sse2)', | 179 'disable_sse2%': '<(disable_sse2)', |
| 180 'library%': '<(library)', | 180 'library%': '<(library)', |
| 181 'component%': '<(component)', | 181 'component%': '<(component)', |
| 182 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)', | 182 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)', |
| 183 'use_third_party_translations%': '<(use_third_party_translations)', |
| 183 'remoting%': '<(remoting)', | 184 'remoting%': '<(remoting)', |
| 184 | 185 |
| 185 # The release channel that this build targets. This is used to restrict | 186 # The release channel that this build targets. This is used to restrict |
| 186 # channel-specific build options, like which installer packages to create. | 187 # channel-specific build options, like which installer packages to create. |
| 187 # The default is 'all', which does no channel-specific filtering. | 188 # The default is 'all', which does no channel-specific filtering. |
| 188 'channel%': 'all', | 189 'channel%': 'all', |
| 189 | 190 |
| 190 # Override chromium_mac_pch and set it to 0 to suppress the use of | 191 # Override chromium_mac_pch and set it to 0 to suppress the use of |
| 191 # precompiled headers on the Mac. Prefix header injection may still be | 192 # precompiled headers on the Mac. Prefix header injection may still be |
| 192 # used, but prefix headers will not be precompiled. This is useful when | 193 # used, but prefix headers will not be precompiled. This is useful when |
| (...skipping 1369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1562 # and therefore SYMROOT, needs to be set at the project level. | 1563 # and therefore SYMROOT, needs to be set at the project level. |
| 1563 'SYMROOT': '<(DEPTH)/xcodebuild', | 1564 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1564 }, | 1565 }, |
| 1565 } | 1566 } |
| 1566 | 1567 |
| 1567 # Local Variables: | 1568 # Local Variables: |
| 1568 # tab-width:2 | 1569 # tab-width:2 |
| 1569 # indent-tabs-mode:nil | 1570 # indent-tabs-mode:nil |
| 1570 # End: | 1571 # End: |
| 1571 # vim: set expandtab tabstop=2 shiftwidth=2: | 1572 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |