blob: 8002153ae2526df7194e64fe909e4f9212bfd149 [file]
# 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",
],
)