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 1163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1174 # OS==android, make all gtest_targets depend on | 1174 # OS==android, make all gtest_targets depend on |
1175 # testing/android/native_test.gyp:native_test_apk. | 1175 # testing/android/native_test.gyp:native_test_apk. |
1176 'gtest_target_type%': 'shared_library', | 1176 'gtest_target_type%': 'shared_library', |
1177 | 1177 |
1178 # Uses system APIs for decoding audio and video. | 1178 # Uses system APIs for decoding audio and video. |
1179 'use_libffmpeg%': '0', | 1179 'use_libffmpeg%': '0', |
1180 | 1180 |
1181 # Always use the chromium skia. | 1181 # Always use the chromium skia. |
1182 'use_system_skia%': '0', | 1182 'use_system_skia%': '0', |
1183 | 1183 |
1184 # Configure crash reporting and build options based on release type. | |
1185 'conditions': [ | |
1186 ['buildtype=="Official"', { | |
1187 # Only report crash dumps for Official builds. | |
1188 'linux_breakpad%': 1, | |
1189 }, { | |
1190 'linux_breakpad%': 0, | |
1191 }], | |
1192 ], | |
1193 | |
1194 # When building as part of the Android system, use system libraries | 1184 # When building as part of the Android system, use system libraries |
1195 # where possible to reduce ROM size. | 1185 # where possible to reduce ROM size. |
1196 # TODO(steveblock): Investigate using the system version of sqlite. | 1186 # TODO(steveblock): Investigate using the system version of sqlite. |
1197 'use_system_sqlite%': 0, # '<(android_build_type)', | 1187 'use_system_sqlite%': 0, # '<(android_build_type)', |
1198 'use_system_expat%': '<(android_build_type)', | 1188 'use_system_expat%': '<(android_build_type)', |
1199 'use_system_icu%': '<(android_build_type)', | 1189 'use_system_icu%': '<(android_build_type)', |
1200 'use_system_stlport%': '<(android_build_type)', | 1190 'use_system_stlport%': '<(android_build_type)', |
1201 | 1191 |
1202 'enable_managed_users%': 0, | 1192 'enable_managed_users%': 0, |
1203 | 1193 |
(...skipping 2790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3994 # settings in target dicts. SYMROOT is a special case, because many other | 3984 # settings in target dicts. SYMROOT is a special case, because many other |
3995 # Xcode variables depend on it, including variables such as | 3985 # Xcode variables depend on it, including variables such as |
3996 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3986 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3997 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3987 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3998 # files to appear (when present) in the UI as actual files and not red | 3988 # files to appear (when present) in the UI as actual files and not red |
3999 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3989 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4000 # and therefore SYMROOT, needs to be set at the project level. | 3990 # and therefore SYMROOT, needs to be set at the project level. |
4001 'SYMROOT': '<(DEPTH)/xcodebuild', | 3991 'SYMROOT': '<(DEPTH)/xcodebuild', |
4002 }, | 3992 }, |
4003 } | 3993 } |
OLD | NEW |