BUILD.gn 754 B

1234567891011121314151617181920212223
  1. # Copyright 2018 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. import("//testing/test.gni")
  5. # Defined as a separate target so that on Android tests can be launched in a
  6. # sub-thread instead of on the main thread to support multi-process tests.
  7. # Can be removed after minSdkVersion >= Q
  8. test("gwp_asan_unittests") {
  9. testonly = true
  10. deps = [
  11. "//base/test:run_all_unittests",
  12. "//components/gwp_asan/common:unit_tests",
  13. "//testing/gtest",
  14. ]
  15. if (is_win || is_mac || is_linux || is_chromeos || is_android) {
  16. deps += [
  17. "//components/gwp_asan/client:unit_tests",
  18. "//components/gwp_asan/crash_handler:unit_tests",
  19. ]
  20. }
  21. }