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