blob: f13afe969f2f08ac732c098d971c5a0d6ed71f46 [file] [log] [blame]
# Copyright 2020 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("ranges") {
sources = [
"algorithm.h",
"functional.h",
"iterator.h",
"ranges.h",
]
}
source_set("unittests") {
testonly = true
sources = [
"algorithm_unittest.cc",
"functional_unittest.cc",
"iterator_unittest.cc",
]
deps = [
":ranges",
"//testing/gmock",
"//testing/gtest",
]
}