blob: 13442f4be6e60f2b634ecb774b5e8546027ab7c4 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
zx_library("id_allocator") {
sdk = "source"
sdk_headers = [ "id_allocator/id_allocator.h" ]
sources = [ "id_allocator.cc" ]
public_deps = [
# <id_allocator/id_allocator.h> has #include <bitmap/bitmap.h>.
"$zx/system/ulib/bitmap:headers",
# <id_allocator/id_allocator.h> has #include <fbl/algorithm.h>.
"$zx/system/ulib/fbl:headers",
]
deps = [
"$zx/system/ulib/bitmap",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zircon-internal",
"$zx/system/ulib/zx",
]
}