blob: bab1f86527180de594809dc26ec8e62a34173a49 [file] [log] [blame]
# 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
}