| 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 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1071 # Compared to full debug version, the default Debug configuration on Android | 1071 # Compared to full debug version, the default Debug configuration on Android |
| 1072 # has no full v8 debug, has size optimization and linker gc section, so that | 1072 # has no full v8 debug, has size optimization and linker gc section, so that |
| 1073 # we can build a debug version with acceptable size and performance. | 1073 # we can build a debug version with acceptable size and performance. |
| 1074 'android_full_debug%': 0, | 1074 'android_full_debug%': 0, |
| 1075 | 1075 |
| 1076 # Sets the default version name and code for Android app, by default we | 1076 # Sets the default version name and code for Android app, by default we |
| 1077 # do a developer build. | 1077 # do a developer build. |
| 1078 'android_app_version_name%': 'Developer Build', | 1078 'android_app_version_name%': 'Developer Build', |
| 1079 'android_app_version_code%': 0, | 1079 'android_app_version_code%': 0, |
| 1080 | 1080 |
| 1081 |
| 1082 # Contains data about the attached devices for gyp_managed_install. |
| 1083 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg', |
| 1084 |
| 1081 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', | 1085 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', |
| 1082 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', | 1086 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', |
| 1083 | 1087 |
| 1084 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', | 1088 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', |
| 1085 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', | 1089 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', |
| 1086 | 1090 |
| 1087 # Whether we are using the rlz library or not. Platforms like Android send | 1091 # Whether we are using the rlz library or not. Platforms like Android send |
| 1088 # rlz codes for searches but do not use the library. | 1092 # rlz codes for searches but do not use the library. |
| 1089 'enable_rlz%': 0, | 1093 'enable_rlz%': 0, |
| 1090 | 1094 |
| (...skipping 3479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4570 # settings in target dicts. SYMROOT is a special case, because many other | 4574 # settings in target dicts. SYMROOT is a special case, because many other |
| 4571 # Xcode variables depend on it, including variables such as | 4575 # Xcode variables depend on it, including variables such as |
| 4572 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4576 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4573 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4577 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4574 # files to appear (when present) in the UI as actual files and not red | 4578 # files to appear (when present) in the UI as actual files and not red |
| 4575 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4579 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4576 # and therefore SYMROOT, needs to be set at the project level. | 4580 # and therefore SYMROOT, needs to be set at the project level. |
| 4577 'SYMROOT': '<(DEPTH)/xcodebuild', | 4581 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4578 }, | 4582 }, |
| 4579 } | 4583 } |
| OLD | NEW |