BUILD.gn 692 B

123456789101112131415161718192021222324
  1. # Copyright 2021 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("//build/buildflag_header.gni")
  5. group("unit_tests") {
  6. testonly = true
  7. deps = [
  8. "//components/segmentation_platform/embedder:unit_tests",
  9. "//components/segmentation_platform/embedder/default_model:unit_tests",
  10. "//components/segmentation_platform/internal:unit_tests",
  11. "//components/segmentation_platform/public:unit_tests",
  12. ]
  13. data_deps = [ ":components_unittests_gtest_filter" ]
  14. }
  15. source_set("components_unittests_gtest_filter") {
  16. testonly = true
  17. data = [ "components_unittests.filter" ]
  18. }