| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 # Disable TCMalloc's debugallocation. | 228 # Disable TCMalloc's debugallocation. |
| 229 'linux_use_debugallocation%': 0, | 229 'linux_use_debugallocation%': 0, |
| 230 | 230 |
| 231 # Disable TCMalloc's heapchecker. | 231 # Disable TCMalloc's heapchecker. |
| 232 'linux_use_heapchecker%': 0, | 232 'linux_use_heapchecker%': 0, |
| 233 | 233 |
| 234 # Set to 1 to turn on seccomp sandbox by default. | 234 # Set to 1 to turn on seccomp sandbox by default. |
| 235 # (Note: this is ignored for official builds.) | 235 # (Note: this is ignored for official builds.) |
| 236 'linux_use_seccomp_sandbox%': 0, | 236 'linux_use_seccomp_sandbox%': 0, |
| 237 | 237 |
| 238 # Set to 1 to link against libgnome-keyring instead of using dlopen(). | |
| 239 'linux_link_gnome_keyring%': 0, | |
| 240 | |
| 241 # Set to select the Title Case versions of strings in GRD files. | 238 # Set to select the Title Case versions of strings in GRD files. |
| 242 'use_titlecase_in_grd_files%': 0, | 239 'use_titlecase_in_grd_files%': 0, |
| 243 | 240 |
| 244 # Used to disable Native Client at compile time, for platforms where it | 241 # Used to disable Native Client at compile time, for platforms where it |
| 245 # isn't supported | 242 # isn't supported |
| 246 'disable_nacl%': 0, | 243 'disable_nacl%': 0, |
| 247 | 244 |
| 248 # Set Thumb compilation flags. | 245 # Set Thumb compilation flags. |
| 249 'arm_thumb%': 0, | 246 'arm_thumb%': 0, |
| 250 | 247 |
| (...skipping 1122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1373 # and therefore SYMROOT, needs to be set at the project level. | 1370 # and therefore SYMROOT, needs to be set at the project level. |
| 1374 'SYMROOT': '<(DEPTH)/xcodebuild', | 1371 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1375 }, | 1372 }, |
| 1376 } | 1373 } |
| 1377 | 1374 |
| 1378 # Local Variables: | 1375 # Local Variables: |
| 1379 # tab-width:2 | 1376 # tab-width:2 |
| 1380 # indent-tabs-mode:nil | 1377 # indent-tabs-mode:nil |
| 1381 # End: | 1378 # End: |
| 1382 # vim: set expandtab tabstop=2 shiftwidth=2: | 1379 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |