blob: 843fdc992ca0e3b7208ab956b86624d900000e8f [file] [log] [blame]
# Copyright 2019 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.
group("fake_legacy_stream") {
testonly = true
public_deps = [ ":fake_legacy_stream_lib" ]
}
source_set("fake_legacy_stream_lib") {
testonly = true
visibility = [ ":*" ]
public = [ "fake_legacy_stream.h" ]
sources = [
"fake_legacy_stream.cc",
"fake_legacy_stream.h",
]
deps = [
"//sdk/lib/fidl/cpp",
"//sdk/lib/syslog/cpp",
"//zircon/public/lib/async",
]
public_deps = [
"//sdk/fidl/fuchsia.camera2",
"//zircon/public/lib/fit",
]
}