Commit 607d25f3 authored by Brian Sheedy's avatar Brian Sheedy Committed by Commit Bot

Remove CrOS crashpad_database_util dep

Removes the crashpad_database_util dependency from ChromeOS,
as CrOS currently still uses Breakpad and attempting to use
the locally compiled version currently fails due to
missing .so files.

Bug: 1054583, 1084334

Change-Id: Ibdf1ed486507a83635d75ab0ff9ce39f04ee0384
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2216592
Auto-Submit: Brian Sheedy <bsheedy@chromium.org>
Commit-Queue: Wenbin Zhang <wenbinzhang@google.com>
Reviewed-by: default avatarWenbin Zhang <wenbinzhang@google.com>
Cr-Commit-Position: refs/heads/master@{#772319}
parent 610e3a69
......@@ -48,10 +48,15 @@ group("telemetry_chrome_test") {
}
if (is_linux) {
data_deps += [
"//third_party/breakpad:dump_syms($host_toolchain)",
"//third_party/crashpad/crashpad/tools:crashpad_database_util",
]
data_deps += [ "//third_party/breakpad:dump_syms($host_toolchain)" ]
# CrOS currently has issues with the locally compiled version of
# crashpad_database_util, so only include it on traditional Linux
# platforms.
if (is_desktop_linux) {
data_deps +=
[ "//third_party/crashpad/crashpad/tools:crashpad_database_util" ]
}
}
if (is_mac) {
......
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