| # 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. | |
| import("//build/test/test_package.gni") | |
| executable("ppp-tests") { | |
| testonly = true | |
| output_name = "ppp-tests" | |
| deps = [ | |
| "//src/connectivity/ppp/lib/hdlc:fcs-test", | |
| "//src/connectivity/ppp/lib/hdlc:frame-test", | |
| ] | |
| } | |
| test_package("tests") { | |
| package_name = "ppp-tests" | |
| deps = [ ":ppp-tests" ] | |
| tests = [ | |
| { | |
| name = "ppp-tests" | |
| }, | |
| ] | |
| } |