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 # Disable TCMalloc's debugallocation. | 208 # Disable TCMalloc's debugallocation. |
209 'linux_use_debugallocation%': 0, | 209 'linux_use_debugallocation%': 0, |
210 | 210 |
211 # Disable TCMalloc's heapchecker. | 211 # Disable TCMalloc's heapchecker. |
212 'linux_use_heapchecker%': 0, | 212 'linux_use_heapchecker%': 0, |
213 | 213 |
214 # Set to 1 to turn on seccomp sandbox by default. | 214 # Set to 1 to turn on seccomp sandbox by default. |
215 # (Note: this is ignored for official builds.) | 215 # (Note: this is ignored for official builds.) |
216 'linux_use_seccomp_sandbox%': 0, | 216 'linux_use_seccomp_sandbox%': 0, |
(...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1279 # and therefore SYMROOT, needs to be set at the project level. | 1279 # and therefore SYMROOT, needs to be set at the project level. |
1280 'SYMROOT': '<(DEPTH)/xcodebuild', | 1280 'SYMROOT': '<(DEPTH)/xcodebuild', |
1281 }, | 1281 }, |
1282 } | 1282 } |
1283 | 1283 |
1284 # Local Variables: | 1284 # Local Variables: |
1285 # tab-width:2 | 1285 # tab-width:2 |
1286 # indent-tabs-mode:nil | 1286 # indent-tabs-mode:nil |
1287 # End: | 1287 # End: |
1288 # vim: set expandtab tabstop=2 shiftwidth=2: | 1288 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |