1# Copyright 2021 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("cleanup_internal") { 8 public = [ "internal/cleanup.h" ] 9 deps = [ 10 "//third_party/abseil-cpp/absl/base:base_internal", 11 "//third_party/abseil-cpp/absl/base:core_headers", 12 "//third_party/abseil-cpp/absl/utility", 13 ] 14 visibility = [ "//third_party/abseil-cpp/absl/*" ] 15} 16 17absl_source_set("cleanup") { 18 public = [ "cleanup.h" ] 19 deps = [ 20 ":cleanup_internal", 21 "//third_party/abseil-cpp/absl/base:config", 22 "//third_party/abseil-cpp/absl/base:core_headers", 23 ] 24} 25 26absl_test("cleanup_test") { 27 sources = [ "cleanup_test.cc" ] 28 deps = [ 29 ":cleanup", 30 "//third_party/abseil-cpp/absl/base:config", 31 "//third_party/abseil-cpp/absl/utility", 32 ] 33} 34