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

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: remove annotation 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
« no previous file with comments | « no previous file | chrome/app/breakpad_linux.h » ('j') | chrome/browser/chrome_browser_main_linux.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/breakpad_linux.h » ('j') | chrome/browser/chrome_browser_main_linux.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698