# Copyright 2025 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

source_set("ios") {
  assert(is_ios, "components/test/ios/BUILD.gn only usable for iOS")
  testonly = true
  sources = [ "test_utils.h" ]
  deps = [ "//third_party/ocmock" ]
}

source_set("unit_tests") {
  testonly = true
  sources = [ "test_utils_unittest.mm" ]
  deps = [
    ":ios",
    "//testing/gtest",
    "//third_party/ocmock",
  ]
}
