blob: 0b96f2e3f9cedd7dc19f5ef2202d7f58fc2319fb [file] [log] [blame]
# Copyright 2022 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.
#
# Package for the Flutter embedder for Fuchsia.
load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "mouse_event_builder",
visibility = ["//visibility:public"],
srcs = [
"mouse_event_builder.h",
"mouse_event_builder.cc",
"fakes/mouse_source.h"
],
deps = [
"@fuchsia_sdk//fidl/fuchsia.ui.composition:fuchsia.ui.composition_cc"
]
)
cc_library(
name = "touch_event_builder",
visibility = ["//visibility:public"],
srcs = [
"touch_event_builder.h",
"touch_event_builder.cc",
"fakes/touch_source.h"
],
deps = [
"@fuchsia_sdk//fidl/fuchsia.ui.composition:fuchsia.ui.composition_cc"
]
)