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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 # sandbox the zygote process and, thus, all renderer processes. | 196 # sandbox the zygote process and, thus, all renderer processes. |
197 'linux_sandbox_path%': '', | 197 'linux_sandbox_path%': '', |
198 | 198 |
199 # Set this to true to enable SELinux support. | 199 # Set this to true to enable SELinux support. |
200 'selinux%': 0, | 200 'selinux%': 0, |
201 | 201 |
202 # Strip the binary after dumping symbols. | 202 # Strip the binary after dumping symbols. |
203 'linux_strip_binary%': 0, | 203 'linux_strip_binary%': 0, |
204 | 204 |
205 # Enable TCMalloc. | 205 # Enable TCMalloc. |
206 'linux_use_tcmalloc%': 0, | 206 'linux_use_tcmalloc%': 1, |
207 | 207 |
208 # Set to select the Title Case versions of strings in GRD files. | 208 # Set to select the Title Case versions of strings in GRD files. |
209 'use_titlecase_in_grd_files%': 0, | 209 'use_titlecase_in_grd_files%': 0, |
210 | 210 |
211 # Used to disable Native Client at compile time, for platforms where it | 211 # Used to disable Native Client at compile time, for platforms where it |
212 # isn't supported | 212 # isn't supported |
213 'disable_nacl%': 0, | 213 'disable_nacl%': 0, |
214 | 214 |
215 # Set Thumb compilation flags. | 215 # Set Thumb compilation flags. |
216 'arm_thumb%': 0, | 216 'arm_thumb%': 0, |
(...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1238 # and therefore SYMROOT, needs to be set at the project level. | 1238 # and therefore SYMROOT, needs to be set at the project level. |
1239 'SYMROOT': '<(DEPTH)/xcodebuild', | 1239 'SYMROOT': '<(DEPTH)/xcodebuild', |
1240 }, | 1240 }, |
1241 } | 1241 } |
1242 | 1242 |
1243 # Local Variables: | 1243 # Local Variables: |
1244 # tab-width:2 | 1244 # tab-width:2 |
1245 # indent-tabs-mode:nil | 1245 # indent-tabs-mode:nil |
1246 # End: | 1246 # End: |
1247 # vim: set expandtab tabstop=2 shiftwidth=2: | 1247 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |