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("utility") { 8 public = [ "utility.h" ] 9 deps = [ 10 "//third_party/abseil-cpp/absl/base:base_internal", 11 "//third_party/abseil-cpp/absl/base:config", 12 "//third_party/abseil-cpp/absl/meta:type_traits", 13 ] 14} 15 16absl_source_set("if_constexpr") { 17 public = [ "internal/if_constexpr.h" ] 18 deps = [ 19 "//third_party/abseil-cpp/absl/base:config", 20 ] 21} 22 23absl_test("if_constexpr_test") { 24 sources = [ "internal/if_constexpr_test.cc" ] 25 deps = [ 26 ":if_constexpr", 27 ] 28} 29