Commit f0028d30 authored by Vlad Tsyrklevich's avatar Vlad Tsyrklevich Committed by Commit Bot

Fix Android chrome_app_unittests build

The chrome_app_unittests target was missing a dependency on
//components/gwp_asan.

Bug: 993092
Change-Id: I9bb082156a810487333974745a61995ef9423a03
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1745573
Auto-Submit: Vlad Tsyrklevich <vtsyrklevich@chromium.org>
Reviewed-by: default avatarVitaly Buka <vitalybuka@chromium.org>
Commit-Queue: Vlad Tsyrklevich <vtsyrklevich@chromium.org>
Cr-Commit-Position: refs/heads/master@{#686218}
parent 085b61f6
......@@ -17,6 +17,7 @@ import("//chrome/common/features.gni")
import("//chromeos/assistant/assistant.gni")
import("//components/feature_engagement/features.gni")
import("//components/feed/features.gni")
import("//components/gwp_asan/buildflags/buildflags.gni")
import("//components/nacl/features.gni")
import("//components/offline_pages/buildflags/features.gni")
import("//components/os_crypt/features.gni")
......@@ -5702,6 +5703,7 @@ test("chrome_app_unittests") {
"//chrome/gpu",
"//components/crash/core/common",
"//components/flags_ui:switches",
"//components/gwp_asan/buildflags",
"//components/safe_browsing:buildflags",
"//components/tracing",
]
......@@ -5709,6 +5711,9 @@ test("chrome_app_unittests") {
# TODO(crbug.com/753619): Enable crash reporting on Fuchsia.
deps += [ "//third_party/breakpad:client" ]
}
if (enable_gwp_asan) {
deps += [ "//components/gwp_asan/client" ]
}
}
if (!is_android) {
......
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