| # Copyright 2026 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. |
| |
| load("@rules_cc//cc:cc_library.bzl", "cc_library") |
| |
| package(default_applicable_licenses = ["//:license"]) |
| |
| cc_library( |
| name = "line_input", |
| srcs = [ |
| "line_input.cc", |
| "modal_line_input.cc", |
| ], |
| hdrs = [ |
| "line_input.h", |
| "modal_line_input.h", |
| ], |
| # copts = ["-Wno-conversion"], |
| visibility = ["//visibility:public"], |
| deps = [ |
| "//sdk/lib/fit", |
| "//sdk/lib/syslog/cpp", |
| "//src/lib/fxl", |
| ], |
| ) |