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("memory") { 8 public = [ "memory.h" ] 9 deps = [ 10 "//third_party/abseil-cpp/absl/base:core_headers", 11 "//third_party/abseil-cpp/absl/meta:type_traits", 12 ] 13} 14 15absl_test("memory_test") { 16 sources = [ "memory_test.cc" ] 17 deps = [ 18 ":memory", 19 "//third_party/abseil-cpp/absl/base:core_headers", 20 ] 21} 22