1# Copyright 2018 The Chromium Authors 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5import("//third_party/abseil-cpp/absl.gni") 6 7absl_source_set("type_traits") { 8 public = [ "type_traits.h" ] 9 deps = [ 10 "//third_party/abseil-cpp/absl/base:config", 11 "//third_party/abseil-cpp/absl/base:core_headers", 12 ] 13} 14 15absl_test("type_traits_test") { 16 sources = [ "type_traits_test.cc" ] 17 deps = [ 18 ":type_traits", 19 "//third_party/abseil-cpp/absl/base:config", 20 "//third_party/abseil-cpp/absl/base:core_headers", 21 "//third_party/abseil-cpp/absl/time", 22 ] 23} 24