blob: fafab3e479cb82333eb3f0c9c6491e339ed351c0 [file] [log] [blame] [edit]
# Copyright 2018 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.
config("drivers_wlan_lib_config") {
include_dirs = [ "include" ]
}
source_set("lib") {
sources = [
"include/wlan/async/dispatcher.h",
"include/wlan/wlanmac-ifc-proxy.h",
]
public_configs = [ ":drivers_wlan_lib_config" ]
configs += [ "//build/config/fuchsia:enable_zircon_asserts" ]
public_deps = [
"//garnet/public/lib/fidl/cpp",
]
deps = [
"//zircon/public/lib/zx",
"//zircon/public/lib/async-cpp",
"//zircon/public/lib/async-loop-cpp",
]
}