summaryrefslogtreecommitdiff
path: root/chromium/components/gwp_asan/BUILD.gn
blob: 47299f882a67e05b285c681f0dede527f43d30ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 || is_android) {
    deps += [
      "//components/gwp_asan/client:unit_tests",
      "//components/gwp_asan/crash_handler:unit_tests",
    ]
  }
}