Remove USE_LINUX_BREAKPAD ifdef since we don't need it for chromium anymore.

See thread "[chromium-dev] PSA: Breakpad is now compiled into
Chromium by default on Linux' for background

TBR=sbc@chromium.org, thakis@chromium.org, thestig@chromium.org

Review URL: https://codereview.chromium.org/18770006

git-svn-id: http://src.chromium.org/svn/trunk/src/build@211755 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
jam@chromium.org 2013-07-16 03:10:07 +00:00
Родитель cce7a2834f
Коммит a49a26a29d
2 изменённых файлов: 7 добавлений и 19 удалений

Просмотреть файл

@ -52,6 +52,13 @@
'../android_webview/android_webview.gyp:android_webview_unittests',
'../base/android/jni_generator/jni_generator.gyp:jni_generator_tests',
'../base/base.gyp:base_unittests',
'../breakpad/breakpad.gyp:breakpad_unittests',
# Also compile the tools needed to deal with minidumps, they are
# needed to run minidump tests upstream.
'../breakpad/breakpad.gyp:dump_syms#host',
'../breakpad/breakpad.gyp:symupload#host',
'../breakpad/breakpad.gyp:minidump_dump#host',
'../breakpad/breakpad.gyp:minidump_stackwalk#host',
'../build/android/tests/multiple_proguards/multiple_proguards.gyp:multiple_proguards_test_apk',
'../cc/cc_tests.gyp:cc_perftests_apk',
'../cc/cc_tests.gyp:cc_unittests',
@ -80,17 +87,6 @@
'../chrome/chrome_resources.gyp:packed_resources',
],
'conditions': [
['linux_breakpad==1', {
'dependencies': [
'../breakpad/breakpad.gyp:breakpad_unittests',
# Also compile the tools needed to deal with minidumps, they are
# needed to run minidump tests upstream.
'../breakpad/breakpad.gyp:dump_syms#host',
'../breakpad/breakpad.gyp:symupload#host',
'../breakpad/breakpad.gyp:minidump_dump#host',
'../breakpad/breakpad.gyp:minidump_stackwalk#host'
],
}],
['"<(gtest_target_type)"=="shared_library"', {
'dependencies': [
# Unit test bundles packaged as an apk.

Просмотреть файл

@ -643,7 +643,6 @@
['OS=="linux" and target_arch=="arm" and chromeos==0', {
# Set some defaults for arm/linux chrome builds
'linux_breakpad%': 0,
'linux_use_tcmalloc%': 0,
# sysroot needs to be an absolute path otherwise it generates
# incorrect results when passed to pkg-config
@ -980,9 +979,6 @@
# Enable strict glibc debug mode.
'glibcxx_debug%': 0,
# Compile in Breakpad support by default so that it can be tested,
# even if it not enabled by default at runtime.
'linux_breakpad%': 1,
# And if we want to dump symbols for Breakpad-enabled builds.
'linux_dump_symbols%': 0,
# And if we want to strip the binary after dumping symbols.
@ -1151,7 +1147,6 @@
'disable_nacl%': 1,
'nacl_untrusted_build%': 0,
'linux_use_tcmalloc%': 0,
'linux_breakpad%': 0,
}],
['OS=="linux" and target_arch=="mipsel"', {
'sysroot%': '<(sysroot)',
@ -3345,9 +3340,6 @@
}],
],
}],
['linux_breakpad==1', {
'defines': ['USE_LINUX_BREAKPAD'],
}],
['linux_dump_symbols==1', {
'cflags': [ '-g' ],
'conditions': [