summaryrefslogtreecommitdiff
path: root/chromium/base/util/ranges/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/base/util/ranges/BUILD.gn')
-rw-r--r--chromium/base/util/ranges/BUILD.gn26
1 files changed, 26 insertions, 0 deletions
diff --git a/chromium/base/util/ranges/BUILD.gn b/chromium/base/util/ranges/BUILD.gn
new file mode 100644
index 00000000000..455c47d6877
--- /dev/null
+++ b/chromium/base/util/ranges/BUILD.gn
@@ -0,0 +1,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",
+ ]
+}