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 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1140 # Chromium-specific code, as opposed to external code. This variable is | 1140 # Chromium-specific code, as opposed to external code. This variable is |
1141 # used to control such things as the set of warnings to enable, and | 1141 # used to control such things as the set of warnings to enable, and |
1142 # whether warnings are treated as errors. | 1142 # whether warnings are treated as errors. |
1143 'chromium_code%': 0, | 1143 'chromium_code%': 0, |
1144 | 1144 |
1145 'release_valgrind_build%': 0, | 1145 'release_valgrind_build%': 0, |
1146 | 1146 |
1147 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600 | 1147 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600 |
1148 'enable_wexit_time_destructors%': 0, | 1148 'enable_wexit_time_destructors%': 0, |
1149 | 1149 |
| 1150 # Build libpeerconnection as a static library by default. |
| 1151 'libpeer_target_type%': 'static_library', |
| 1152 |
1150 # Set to 1 to compile with the built in pdf viewer. | 1153 # Set to 1 to compile with the built in pdf viewer. |
1151 'internal_pdf%': 0, | 1154 'internal_pdf%': 0, |
1152 | 1155 |
1153 # Set to 1 to compile with the OpenGL ES 2.0 conformance tests. | 1156 # Set to 1 to compile with the OpenGL ES 2.0 conformance tests. |
1154 'internal_gles2_conform_tests%': 0, | 1157 'internal_gles2_conform_tests%': 0, |
1155 | 1158 |
1156 # Set to 1 to compile the filter fuzzer. | 1159 # Set to 1 to compile the filter fuzzer. |
1157 'internal_filter_fuzzer%': 0, | 1160 'internal_filter_fuzzer%': 0, |
1158 | 1161 |
1159 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_' | 1162 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_' |
(...skipping 3725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4885 # settings in target dicts. SYMROOT is a special case, because many other | 4888 # settings in target dicts. SYMROOT is a special case, because many other |
4886 # Xcode variables depend on it, including variables such as | 4889 # Xcode variables depend on it, including variables such as |
4887 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4890 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4888 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4891 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4889 # files to appear (when present) in the UI as actual files and not red | 4892 # files to appear (when present) in the UI as actual files and not red |
4890 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4893 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4891 # and therefore SYMROOT, needs to be set at the project level. | 4894 # and therefore SYMROOT, needs to be set at the project level. |
4892 'SYMROOT': '<(DEPTH)/xcodebuild', | 4895 'SYMROOT': '<(DEPTH)/xcodebuild', |
4893 }, | 4896 }, |
4894 } | 4897 } |
OLD | NEW |