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