blob: cbf3d70ffb4944ba4d8bee8ec671dd3802888f13 [file] [log] [blame]
# Copyright 2021 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")
executable("bin") {
output_name = "mock_profile_provider"
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.media:fuchsia.media_hlcpp",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//zircon/system/ulib/async-default",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}
fuchsia_package_with_single_component("mock_profile_provider") {
manifest = "meta/mock_profile_provider.cml"
deps = [ ":bin" ]
}