BUILD.gn (514B)
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 5 import("//third_party/abseil-cpp/absl.gni") 6 7 absl_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 15 absl_test("memory_test") { 16 sources = [ "memory_test.cc" ] 17 deps = [ 18 ":memory", 19 "//third_party/abseil-cpp/absl/base:core_headers", 20 ] 21 }