blob: 5214f8f758bb682c70fcdf88b1ee863d80a3b1cf [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.
source_set("fcs") {
sources = [
"fcs.cc",
"fcs.h",
]
deps = [ "//zircon/public/lib/fbl" ]
}
source_set("fcs-test") {
testonly = true
sources = [ "fcs-test.cc" ]
include_dirs = [ "//src/connectivity/ppp" ]
deps = [
":fcs",
"//zircon/public/lib/zxtest",
]
}
source_set("frame") {
sources = [
"frame.cc",
"frame.h",
]
include_dirs = [ "//src/connectivity/ppp" ]
deps = [
":fcs",
"//sdk/lib/fit-promise",
"//src/connectivity/ppp/lib/common",
"//zircon/public/lib/fbl",
]
public_deps = [ "//sdk/lib/fit-promise" ]
}
source_set("frame-test") {
testonly = true
sources = [ "frame-test.cc" ]
include_dirs = [ "//src/connectivity/ppp" ]
deps = [
":frame",
"//zircon/public/lib/zxtest",
]
}