blob: 337f773984179ce32584b768d562cebae3c3cf5c [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.
source_set("query") {
sources = [
"discover.cc",
"discover.h",
"location.cc",
"location.h",
"read.cc",
"read.h",
"source.cc",
"source.h",
]
deps = [
"//src/lib/files",
"//src/lib/fxl",
]
public_deps = [
"//sdk/lib/vfs/cpp",
"//src/lib/inspect_deprecated:reader",
"//zircon/public/lib/fit",
]
}
source_set("formatter") {
sources = [
"formatter.cc",
"formatter.h",
]
public_deps = [
":query",
"//src/lib/files",
"//src/lib/fxl",
"//src/lib/inspect_deprecated/health",
]
}
source_set("text_formatter") {
sources = [
"text_formatter.cc",
"text_formatter.h",
]
deps = [ "//garnet/public/lib/fostr" ]
public_deps = [ ":formatter" ]
}
source_set("json_formatter") {
sources = [
"json_formatter.cc",
"json_formatter.h",
]
configs += [ "//third_party/cobalt:cobalt_config" ]
public_deps = [
":formatter",
"//third_party/modp_b64",
"//third_party/rapidjson",
]
}