blob: 327406b75ae646fd55b2cb7a400a184852918917 [file] [log] [blame]
# Copyright 2018 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/host.gni")
executable("json_validator") {
sources = [ "main.cc" ]
deps = [
"//src/lib/fxl",
# TODO(fxbug.dev/57392): Move it back to //third_party once unification completes.
"//zircon/third_party/rapidjson",
]
}
install_host_tools("install") {
deps = [ ":json_validator" ]
outputs = [ "json_validator" ]
}