1load("//bazel:skia_rules.bzl", "skia_cc_library") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9# TODO(kjlubick) make this depend on //src/base after migrating all users 10# of this off the legacy targets 11skia_cc_library( 12 name = "skui", 13 hdrs = [ 14 "InputState.h", 15 "Key.h", 16 "ModifierKey.h", 17 ], 18 visibility = ["//:__subpackages__"], 19 deps = ["//src/base"], 20) 21