| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
| 10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 | 374 |
| 375 # Enables support for background apps. | 375 # Enables support for background apps. |
| 376 'enable_background%': 1, | 376 'enable_background%': 1, |
| 377 | 377 |
| 378 # Enable the task manager by default. | 378 # Enable the task manager by default. |
| 379 'enable_task_manager%': 1, | 379 'enable_task_manager%': 1, |
| 380 | 380 |
| 381 # Enable FTP support by default. | 381 # Enable FTP support by default. |
| 382 'disable_ftp_support%': 0, | 382 'disable_ftp_support%': 0, |
| 383 | 383 |
| 384 # XInput2 multitouch support is disabled by default (use_xi2_mt=0). | 384 # XInput2 multitouch support is enabled by default (use_xi2_mt=2). |
| 385 # Setting to non-zero value enables XI2 MT. When XI2 MT is enabled, | 385 # Setting to zero value disables XI2 MT. When XI2 MT is enabled, |
| 386 # the input value also defines the required XI2 minor minimum version. | 386 # the input value also defines the required XI2 minor minimum version. |
| 387 # For example, use_xi2_mt=2 means XI2.2 or above version is required. | 387 # For example, use_xi2_mt=2 means XI2.2 or above version is required. |
| 388 'use_xi2_mt%': 0, | 388 'use_xi2_mt%': 2, |
| 389 | 389 |
| 390 # Use of precompiled headers on Windows. | 390 # Use of precompiled headers on Windows. |
| 391 # | 391 # |
| 392 # This variable may be explicitly set to 1 (enabled) or 0 | 392 # This variable may be explicitly set to 1 (enabled) or 0 |
| 393 # (disabled) in ~/.gyp/include.gypi or via the GYP command line. | 393 # (disabled) in ~/.gyp/include.gypi or via the GYP command line. |
| 394 # This setting will override the default. | 394 # This setting will override the default. |
| 395 # | 395 # |
| 396 # See | 396 # See |
| 397 # http://code.google.com/p/chromium/wiki/WindowsPrecompiledHeaders | 397 # http://code.google.com/p/chromium/wiki/WindowsPrecompiledHeaders |
| 398 # for details. | 398 # for details. |
| (...skipping 4346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4745 # settings in target dicts. SYMROOT is a special case, because many other | 4745 # settings in target dicts. SYMROOT is a special case, because many other |
| 4746 # Xcode variables depend on it, including variables such as | 4746 # Xcode variables depend on it, including variables such as |
| 4747 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4747 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4748 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4748 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4749 # files to appear (when present) in the UI as actual files and not red | 4749 # files to appear (when present) in the UI as actual files and not red |
| 4750 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4750 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4751 # and therefore SYMROOT, needs to be set at the project level. | 4751 # and therefore SYMROOT, needs to be set at the project level. |
| 4752 'SYMROOT': '<(DEPTH)/xcodebuild', | 4752 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4753 }, | 4753 }, |
| 4754 } | 4754 } |
| OLD | NEW |