blob: 455c47d6877c6de74c21086c91e27d848903bfcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# 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",
]
}
source_set("unittests") {
testonly = true
sources = [
"algorithm_unittest.cc",
"functional_unittest.cc",
"iterator_unittest.cc",
]
deps = [
":ranges",
"//testing/gmock",
"//testing/gtest",
]
}
|