blob: fc4a50bea3948f2e97ead502c9e216e51f8a292b [file] [log] [blame]
# 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.
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",
]
}