| # Copyright 2020 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/json/validate_json.gni") |
| |
| group("tests") { |
| testonly = true |
| |
| deps = [ |
| ":test_json_validator", |
| ":test_json_validator_with_comments", |
| ] |
| } |
| |
| validate_json("test_json_validator") { |
| testonly = true |
| data = "test_document.json" |
| schema = "test_schema.json" |
| } |
| |
| validate_json("test_json_validator_with_comments") { |
| testonly = true |
| data = "test_document_with_comments.json" |
| schema = "test_schema.json" |
| allow_comments = true |
| } |