• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2018 The Chromium Authors. All rights reserved.
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_source_set("type_traits_test") {
13  testonly = true
14  sources = [ "type_traits_test.cc" ]
15  if (is_clang) {
16    cflags_cc = [ "-Wno-unused-private-field" ]
17  }
18  deps = [
19    ":type_traits",
20    "//third_party/googletest:gtest",
21  ]
22}
23