• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 = [ "//third_party/abseil-cpp/absl/base:config" ]
10}
11
12absl_test("type_traits_test") {
13  sources = [ "type_traits_test.cc" ]
14  deps = [
15    ":type_traits",
16    "//third_party/abseil-cpp/absl/base:core_headers",
17  ]
18}
19