| # 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("//flutter/third_party/abseil-cpp/absl.gni") |
| |
| absl_source_set("type_traits") { |
| public = [ "type_traits.h" ] |
| deps = [ |
| "//flutter/third_party/abseil-cpp/absl/base:config", |
| "//flutter/third_party/abseil-cpp/absl/base:core_headers", |
| ] |
| } |
| |
| absl_test("type_traits_test") { |
| sources = [ "type_traits_test.cc" ] |
| deps = [ |
| ":type_traits", |
| "//flutter/third_party/abseil-cpp/absl/base:config", |
| "//flutter/third_party/abseil-cpp/absl/base:core_headers", |
| "//flutter/third_party/abseil-cpp/absl/time", |
| ] |
| } |