aboutsummaryrefslogtreecommitdiff
path: root/third_party/abseil-cpp/absl/meta/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/abseil-cpp/absl/meta/BUILD.gn')
-rw-r--r--third_party/abseil-cpp/absl/meta/BUILD.gn18
1 files changed, 18 insertions, 0 deletions
diff --git a/third_party/abseil-cpp/absl/meta/BUILD.gn b/third_party/abseil-cpp/absl/meta/BUILD.gn
new file mode 100644
index 0000000000..2d671215b3
--- /dev/null
+++ b/third_party/abseil-cpp/absl/meta/BUILD.gn
@@ -0,0 +1,18 @@
+# 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.
+
+import("//third_party/abseil-cpp/absl.gni")
+
+absl_source_set("type_traits") {
+ public = [ "type_traits.h" ]
+ deps = [ "//third_party/abseil-cpp/absl/base:config" ]
+}
+
+absl_test("type_traits_test") {
+ sources = [ "type_traits_test.cc" ]
+ deps = [
+ ":type_traits",
+ "//third_party/abseil-cpp/absl/base:core_headers",
+ ]
+}