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 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1077 # Compared to full debug version, the default Debug configuration on Android | 1077 # Compared to full debug version, the default Debug configuration on Android |
1078 # has no full v8 debug, has size optimization and linker gc section, so that | 1078 # has no full v8 debug, has size optimization and linker gc section, so that |
1079 # we can build a debug version with acceptable size and performance. | 1079 # we can build a debug version with acceptable size and performance. |
1080 'android_full_debug%': 0, | 1080 'android_full_debug%': 0, |
1081 | 1081 |
1082 # Sets the default version name and code for Android app, by default we | 1082 # Sets the default version name and code for Android app, by default we |
1083 # do a developer build. | 1083 # do a developer build. |
1084 'android_app_version_name%': 'Developer Build', | 1084 'android_app_version_name%': 'Developer Build', |
1085 'android_app_version_code%': 0, | 1085 'android_app_version_code%': 0, |
1086 | 1086 |
| 1087 # TODO(enne): Remove this once #ifdefs have been removed in Blink. |
| 1088 'blink_scrolling_position_no_offset%': 1, |
1087 | 1089 |
1088 # Contains data about the attached devices for gyp_managed_install. | 1090 # Contains data about the attached devices for gyp_managed_install. |
1089 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg', | 1091 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg', |
1090 | 1092 |
1091 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', | 1093 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', |
1092 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', | 1094 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', |
1093 | 1095 |
1094 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', | 1096 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', |
1095 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', | 1097 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', |
1096 | 1098 |
(...skipping 3535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4632 # settings in target dicts. SYMROOT is a special case, because many other | 4634 # settings in target dicts. SYMROOT is a special case, because many other |
4633 # Xcode variables depend on it, including variables such as | 4635 # Xcode variables depend on it, including variables such as |
4634 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4636 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4635 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4637 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4636 # files to appear (when present) in the UI as actual files and not red | 4638 # files to appear (when present) in the UI as actual files and not red |
4637 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4639 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4638 # and therefore SYMROOT, needs to be set at the project level. | 4640 # and therefore SYMROOT, needs to be set at the project level. |
4639 'SYMROOT': '<(DEPTH)/xcodebuild', | 4641 'SYMROOT': '<(DEPTH)/xcodebuild', |
4640 }, | 4642 }, |
4641 } | 4643 } |
OLD | NEW |