blob: 2620bd6be4ca5f4a79e078a0cad2c64d8eb04f51 [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.
import("//build/components.gni")
group("mouse-input-chromium") {
testonly = true
deps = [ ":package" ]
}
executable("bin") {
output_name = "mouse-input-chromium"
sources = [ "mouse-input-chromium.cc" ]
deps = [
"//sdk/fidl/fuchsia.ui.app:fuchsia.ui.app_hlcpp",
"//sdk/fidl/fuchsia.ui.test.input:fuchsia.ui.test.input_hlcpp",
"//sdk/fidl/fuchsia.web:fuchsia.web_hlcpp",
"//sdk/lib/sys/cpp",
"//sdk/lib/ui/scenic/cpp",
"//src/chromium/web_engine/meta/shards:context_provider_create_with_network",
"//src/chromium/web_engine/meta/shards:context_provider_create_with_view",
"//src/lib/fsl",
"//src/lib/fxl",
"//src/lib/json_parser",
"//third_party/rapidjson",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}
fuchsia_component("mouse-input-chromium-component") {
testonly = true
component_name = "mouse-input-chromium"
manifest = "meta/mouse-input-chromium.cml"
deps = [
":bin",
"//sdk/lib/sys/component/cpp/testing:cpp",
]
}
fuchsia_package("package") {
testonly = true
package_name = "mouse-input-chromium"
deps = [ ":mouse-input-chromium-component" ]
}