chromium/components/offline_items_collection/core/utilities/BUILD.gn

# Copyright 2018 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("utilities") {
  sources = [ "file_existence_checker.h" ]

  public_deps = [ "//base" ]
}

source_set("unit_tests") {
  testonly = true

  sources = [ "file_existence_checker_unittest.cc" ]

  deps = [
    ":utilities",
    "//base",
    "//base/test:test_support",
    "//testing/gtest",
  ]
}