| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 # sandbox the zygote process and, thus, all renderer processes. | 180 # sandbox the zygote process and, thus, all renderer processes. |
| 181 'linux_sandbox_path%': '', | 181 'linux_sandbox_path%': '', |
| 182 | 182 |
| 183 # Set this to true to enable SELinux support. | 183 # Set this to true to enable SELinux support. |
| 184 'selinux%': 0, | 184 'selinux%': 0, |
| 185 | 185 |
| 186 # Strip the binary after dumping symbols. | 186 # Strip the binary after dumping symbols. |
| 187 'linux_strip_binary%': 0, | 187 'linux_strip_binary%': 0, |
| 188 | 188 |
| 189 # Enable TCMalloc. | 189 # Enable TCMalloc. |
| 190 'linux_use_tcmalloc%': 1, | 190 'linux_use_tcmalloc%': 0, |
| 191 | 191 |
| 192 # Set to select the Title Case versions of strings in GRD files. | 192 # Set to select the Title Case versions of strings in GRD files. |
| 193 'use_titlecase_in_grd_files%': 0, | 193 'use_titlecase_in_grd_files%': 0, |
| 194 | 194 |
| 195 # Used to disable Native Client at compile time, for platforms where it | 195 # Used to disable Native Client at compile time, for platforms where it |
| 196 # isn't supported | 196 # isn't supported |
| 197 'disable_nacl%': 0, | 197 'disable_nacl%': 0, |
| 198 | 198 |
| 199 # Set ARM-v7 compilation flags | 199 # Set ARM-v7 compilation flags |
| 200 'armv7%': 0, | 200 'armv7%': 0, |
| (...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1140 # and therefore SYMROOT, needs to be set at the project level. | 1140 # and therefore SYMROOT, needs to be set at the project level. |
| 1141 'SYMROOT': '<(DEPTH)/xcodebuild', | 1141 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1142 }, | 1142 }, |
| 1143 } | 1143 } |
| 1144 | 1144 |
| 1145 # Local Variables: | 1145 # Local Variables: |
| 1146 # tab-width:2 | 1146 # tab-width:2 |
| 1147 # indent-tabs-mode:nil | 1147 # indent-tabs-mode:nil |
| 1148 # End: | 1148 # End: |
| 1149 # vim: set expandtab tabstop=2 shiftwidth=2: | 1149 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |