| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 # Set Neon compilation flags (only meaningful if armv7==1). | 100 # Set Neon compilation flags (only meaningful if armv7==1). |
| 101 'arm_neon%': 1, | 101 'arm_neon%': 1, |
| 102 | 102 |
| 103 # The system root for cross-compiles. Default: none. | 103 # The system root for cross-compiles. Default: none. |
| 104 'sysroot%': '', | 104 'sysroot%': '', |
| 105 | 105 |
| 106 # On Linux, we build with sse2 for Chromium builds. | 106 # On Linux, we build with sse2 for Chromium builds. |
| 107 'disable_sse2%': 0, | 107 'disable_sse2%': 0, |
| 108 | 108 |
| 109 # Use libjpeg-turbo as the JPEG codec used by Chromium. | 109 # Use libjpeg-turbo as the JPEG codec used by Chromium. |
| 110 'use_libjpeg_turbo%': 0, | 110 'use_libjpeg_turbo%': 1, |
| 111 | 111 |
| 112 # Variable 'component' is for cases where we would like to build some | 112 # Variable 'component' is for cases where we would like to build some |
| 113 # components as dynamic shared libraries but still need variable | 113 # components as dynamic shared libraries but still need variable |
| 114 # 'library' for static libraries. | 114 # 'library' for static libraries. |
| 115 # By default, component is set to whatever library is set to and | 115 # By default, component is set to whatever library is set to and |
| 116 # it can be overriden by the GYP command line or by ~/.gyp/include.gypi. | 116 # it can be overriden by the GYP command line or by ~/.gyp/include.gypi. |
| 117 'component%': '<(library)', | 117 'component%': '<(library)', |
| 118 | 118 |
| 119 # Set to select the Title Case versions of strings in GRD files. | 119 # Set to select the Title Case versions of strings in GRD files. |
| 120 'use_titlecase_in_grd_files%': 0, | 120 'use_titlecase_in_grd_files%': 0, |
| (...skipping 1391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1512 # and therefore SYMROOT, needs to be set at the project level. | 1512 # and therefore SYMROOT, needs to be set at the project level. |
| 1513 'SYMROOT': '<(DEPTH)/xcodebuild', | 1513 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1514 }, | 1514 }, |
| 1515 } | 1515 } |
| 1516 | 1516 |
| 1517 # Local Variables: | 1517 # Local Variables: |
| 1518 # tab-width:2 | 1518 # tab-width:2 |
| 1519 # indent-tabs-mode:nil | 1519 # indent-tabs-mode:nil |
| 1520 # End: | 1520 # End: |
| 1521 # vim: set expandtab tabstop=2 shiftwidth=2: | 1521 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |