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 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
977 | 977 |
978 # Disable Dart by default. | 978 # Disable Dart by default. |
979 'enable_dart%': 0, | 979 'enable_dart%': 0, |
980 | 980 |
981 # The desired version of Windows SDK can be set in ~/.gyp/include.gypi. | 981 # The desired version of Windows SDK can be set in ~/.gyp/include.gypi. |
982 'msbuild_toolset%': '', | 982 'msbuild_toolset%': '', |
983 | 983 |
984 # Native Client is enabled by default. | 984 # Native Client is enabled by default. |
985 'disable_nacl%': 0, | 985 'disable_nacl%': 0, |
986 | 986 |
| 987 # Portable Native Client is enabled by default. |
| 988 'disable_pnacl%': 0, |
| 989 |
987 # Whether to build full debug version for Debug configuration on Android. | 990 # Whether to build full debug version for Debug configuration on Android. |
988 # Compared to full debug version, the default Debug configuration on Android | 991 # Compared to full debug version, the default Debug configuration on Android |
989 # has no full v8 debug, has size optimization and linker gc section, so that | 992 # has no full v8 debug, has size optimization and linker gc section, so that |
990 # we can build a debug version with acceptable size and performance. | 993 # we can build a debug version with acceptable size and performance. |
991 'android_full_debug%': 0, | 994 'android_full_debug%': 0, |
992 | 995 |
993 # Sets the default version name and code for Android app, by default we | 996 # Sets the default version name and code for Android app, by default we |
994 # do a developer build. | 997 # do a developer build. |
995 'android_app_version_name%': 'Developer Build', | 998 'android_app_version_name%': 'Developer Build', |
996 'android_app_version_code%': 0, | 999 'android_app_version_code%': 0, |
(...skipping 3112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4109 # settings in target dicts. SYMROOT is a special case, because many other | 4112 # settings in target dicts. SYMROOT is a special case, because many other |
4110 # Xcode variables depend on it, including variables such as | 4113 # Xcode variables depend on it, including variables such as |
4111 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4114 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4112 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4115 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4113 # files to appear (when present) in the UI as actual files and not red | 4116 # files to appear (when present) in the UI as actual files and not red |
4114 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4117 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4115 # and therefore SYMROOT, needs to be set at the project level. | 4118 # and therefore SYMROOT, needs to be set at the project level. |
4116 'SYMROOT': '<(DEPTH)/xcodebuild', | 4119 'SYMROOT': '<(DEPTH)/xcodebuild', |
4117 }, | 4120 }, |
4118 } | 4121 } |
OLD | NEW |