Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Side by Side Diff: build/common.gypi

Issue 11969025: Enable breakpad building by default on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix assuming linux_breakpad->on Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after
1170 # OS==android, make all gtest_targets depend on 1170 # OS==android, make all gtest_targets depend on
1171 # testing/android/native_test.gyp:native_test_apk. 1171 # testing/android/native_test.gyp:native_test_apk.
1172 'gtest_target_type%': 'shared_library', 1172 'gtest_target_type%': 'shared_library',
1173 1173
1174 # Uses system APIs for decoding audio and video. 1174 # Uses system APIs for decoding audio and video.
1175 'use_libffmpeg%': '0', 1175 'use_libffmpeg%': '0',
1176 1176
1177 # Always use the chromium skia. 1177 # Always use the chromium skia.
1178 'use_system_skia%': '0', 1178 'use_system_skia%': '0',
1179 1179
1180 # Configure crash reporting and build options based on release type.
1181 'conditions': [
1182 ['buildtype=="Official"', {
1183 # Only report crash dumps for Official builds.
1184 'linux_breakpad%': 1,
1185 }, {
1186 'linux_breakpad%': 0,
1187 }],
1188 ],
1189
1190 # When building as part of the Android system, use system libraries 1180 # When building as part of the Android system, use system libraries
1191 # where possible to reduce ROM size. 1181 # where possible to reduce ROM size.
1192 # TODO(steveblock): Investigate using the system version of sqlite. 1182 # TODO(steveblock): Investigate using the system version of sqlite.
1193 'use_system_sqlite%': 0, # '<(android_build_type)', 1183 'use_system_sqlite%': 0, # '<(android_build_type)',
1194 'use_system_expat%': '<(android_build_type)', 1184 'use_system_expat%': '<(android_build_type)',
1195 'use_system_icu%': '<(android_build_type)', 1185 'use_system_icu%': '<(android_build_type)',
1196 'use_system_stlport%': '<(android_build_type)', 1186 'use_system_stlport%': '<(android_build_type)',
1197 1187
1198 # Copy it out one scope. 1188 # Copy it out one scope.
1199 'android_build_type%': '<(android_build_type)', 1189 'android_build_type%': '<(android_build_type)',
(...skipping 2785 matching lines...) Expand 10 before | Expand all | Expand 10 after
3985 # settings in target dicts. SYMROOT is a special case, because many other 3975 # settings in target dicts. SYMROOT is a special case, because many other
3986 # Xcode variables depend on it, including variables such as 3976 # Xcode variables depend on it, including variables such as
3987 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3977 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3988 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3978 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3989 # files to appear (when present) in the UI as actual files and not red 3979 # files to appear (when present) in the UI as actual files and not red
3990 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3980 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3991 # and therefore SYMROOT, needs to be set at the project level. 3981 # and therefore SYMROOT, needs to be set at the project level.
3992 'SYMROOT': '<(DEPTH)/xcodebuild', 3982 'SYMROOT': '<(DEPTH)/xcodebuild',
3993 }, 3983 },
3994 } 3984 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698