1# Copyright 2020 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("bind_front") { 8 sources = [ "internal/front_binder.h" ] 9 public = [ "bind_front.h" ] 10 deps = [ 11 "//third_party/abseil-cpp/absl/base:base_internal", 12 "//third_party/abseil-cpp/absl/container:compressed_tuple", 13 "//third_party/abseil-cpp/absl/meta:type_traits", 14 "//third_party/abseil-cpp/absl/utility", 15 ] 16} 17 18absl_source_set("function_ref") { 19 sources = [ "internal/function_ref.h" ] 20 public = [ "function_ref.h" ] 21 deps = [ 22 "//third_party/abseil-cpp/absl/base:base_internal", 23 "//third_party/abseil-cpp/absl/base:core_headers", 24 "//third_party/abseil-cpp/absl/meta:type_traits", 25 ] 26} 27