mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 17:26:24 +00:00

PR-URL: https://github.com/nodejs/node/pull/51362 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
40 lines
1006 B
Plaintext
40 lines
1006 B
Plaintext
# Copyright 2018 The Chromium Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//third_party/abseil-cpp/absl.gni")
|
|
|
|
absl_source_set("algorithm") {
|
|
public = [ "algorithm.h" ]
|
|
deps = [ "//third_party/abseil-cpp/absl/base:config" ]
|
|
}
|
|
|
|
absl_source_set("container") {
|
|
public = [ "container.h" ]
|
|
deps = [
|
|
":algorithm",
|
|
"//third_party/abseil-cpp/absl/base:nullability",
|
|
"//third_party/abseil-cpp/absl/base:core_headers",
|
|
"//third_party/abseil-cpp/absl/meta:type_traits",
|
|
]
|
|
}
|
|
|
|
absl_test("algorithm_test") {
|
|
sources = [ "algorithm_test.cc" ]
|
|
deps = [
|
|
":algorithm",
|
|
"//third_party/abseil-cpp/absl/base:config",
|
|
]
|
|
}
|
|
|
|
absl_test("container_test") {
|
|
sources = [ "container_test.cc" ]
|
|
deps = [
|
|
":container",
|
|
"//third_party/abseil-cpp/absl/base",
|
|
"//third_party/abseil-cpp/absl/base:core_headers",
|
|
"//third_party/abseil-cpp/absl/memory",
|
|
"//third_party/abseil-cpp/absl/types:span",
|
|
]
|
|
}
|