| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 | 239 |
| 240 # Set this to true to enable SELinux support. | 240 # Set this to true to enable SELinux support. |
| 241 'selinux%': 0, | 241 'selinux%': 0, |
| 242 | 242 |
| 243 # Override whether we should use Breakpad on Linux. I.e. for Chrome bot. | 243 # Override whether we should use Breakpad on Linux. I.e. for Chrome bot. |
| 244 'linux_breakpad%': 0, | 244 'linux_breakpad%': 0, |
| 245 # And if we want to dump symbols for Breakpad-enabled builds. | 245 # And if we want to dump symbols for Breakpad-enabled builds. |
| 246 'linux_dump_symbols%': 0, | 246 'linux_dump_symbols%': 0, |
| 247 # And if we want to strip the binary after dumping symbols. | 247 # And if we want to strip the binary after dumping symbols. |
| 248 'linux_strip_binary%': 0, | 248 'linux_strip_binary%': 0, |
| 249 # Strip the test binaries needed for Linux reliability tests. |
| 250 'linux_strip_reliability_tests%': 0, |
| 249 | 251 |
| 250 # Enable TCMalloc. | 252 # Enable TCMalloc. |
| 251 'linux_use_tcmalloc%': 1, | 253 'linux_use_tcmalloc%': 1, |
| 252 | 254 |
| 253 # Disable TCMalloc's debugallocation. | 255 # Disable TCMalloc's debugallocation. |
| 254 'linux_use_debugallocation%': 0, | 256 'linux_use_debugallocation%': 0, |
| 255 | 257 |
| 256 # Disable TCMalloc's heapchecker. | 258 # Disable TCMalloc's heapchecker. |
| 257 'linux_use_heapchecker%': 0, | 259 'linux_use_heapchecker%': 0, |
| 258 | 260 |
| (...skipping 1183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1442 # and therefore SYMROOT, needs to be set at the project level. | 1444 # and therefore SYMROOT, needs to be set at the project level. |
| 1443 'SYMROOT': '<(DEPTH)/xcodebuild', | 1445 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1444 }, | 1446 }, |
| 1445 } | 1447 } |
| 1446 | 1448 |
| 1447 # Local Variables: | 1449 # Local Variables: |
| 1448 # tab-width:2 | 1450 # tab-width:2 |
| 1449 # indent-tabs-mode:nil | 1451 # indent-tabs-mode:nil |
| 1450 # End: | 1452 # End: |
| 1451 # vim: set expandtab tabstop=2 shiftwidth=2: | 1453 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |