Commit f8d55d3a authored by brettw@chromium.org's avatar brettw@chromium.org

Fix breakpad warnings.

This has a warning that seems very dependent on the compiler version.

BUG=
R=jamesr@chromium.org

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278466 0039d316-1c4b-4281-b951-d872f2087c98
parent 6269704f
...@@ -106,8 +106,7 @@ group("root") { ...@@ -106,8 +106,7 @@ group("root") {
] ]
if (!is_win) { if (!is_win) {
# TODO(brettw) re-enable once this compiles reliably. deps += [ "//breakpad:symupload" ]
#deps += [ "//breakpad:symupload" ]
} }
if (is_linux) { if (is_linux) {
...@@ -157,6 +156,7 @@ group("root") { ...@@ -157,6 +156,7 @@ group("root") {
# Fails on Android for unknown reasons. # Fails on Android for unknown reasons.
"//third_party/flac", "//third_party/flac",
"//breakpad:symupload",
# TODO(brettw) make Blink work on Android. # TODO(brettw) make Blink work on Android.
"//third_party/WebKit/public:all_blink", "//third_party/WebKit/public:all_blink",
......
...@@ -343,6 +343,10 @@ if (is_linux && current_toolchain == host_toolchain) { ...@@ -343,6 +343,10 @@ if (is_linux && current_toolchain == host_toolchain) {
"src/tools/linux/dump_syms/dump_syms.cc", "src/tools/linux/dump_syms/dump_syms.cc",
] ]
# There are some warnings in this code.
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ]
# dwarf2reader.cc uses dynamic_cast. Because we don't typically # dwarf2reader.cc uses dynamic_cast. Because we don't typically
# don't support RTTI, we enable it for this single target. Since # don't support RTTI, we enable it for this single target. Since
# dump_syms doesn't share any object files with anything else, # dump_syms doesn't share any object files with anything else,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment