blob: 46515a55f27905fdb7b7bbc2db503045bd254a59 [file] [log] [blame]
# Copyright 2016 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/fidl/fidl.gni")
import("//garnet/public/build/fostr/fostr_fidl.gni")
import("//peridot/bin/ledger/fidl/error_notifier/error_notifier.gni")
fidl("fidl") {
name = "fuchsia.ledger.internal"
sources = [
"debug.fidl",
"internal.fidl",
]
deps = [
"//peridot/public/fidl/fuchsia.ledger",
"//peridot/public/fidl/fuchsia.ledger.cloud",
]
}
error_notifier_fidl("error_notifier_internal") {
fidl_target = ":fidl"
}
error_notifier_fidl("error_notifier_public") {
fidl_target = "//peridot/public/fidl/fuchsia.ledger"
}
source_set("error_notifier") {
sources = [
"error_notifier.h",
]
public_deps = [
":error_notifier_internal",
":error_notifier_public",
]
configs += [ "//peridot/bin/ledger:ledger_config" ]
}