blob: 7e6cc7a65b878db26bd84ddd827a2656f563ab8f [file] [log] [blame]
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//testing/test.gni")
# Defined as a separate target so that on Android tests can be launched in a
# sub-thread instead of on the main thread to support multi-process tests.
# Can be removed after minSdkVersion >= Q
test("gwp_asan_unittests") {
testonly = true
deps = [
"//base/test:run_all_unittests",
"//components/gwp_asan/common:unit_tests",
"//testing/gtest",
]
if (is_win || is_mac || is_linux) {
deps += [
"//components/gwp_asan/client:unit_tests",
"//components/gwp_asan/crash_handler:unit_tests",
]
}
}