blob: c2bfd14bea3d3bb5b62bbaba4d1c71f05b337376 [file] [log] [blame] [edit]
#!/bin/sh -e
# 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.
exec > "$1"
shift
echo '// DO NOT EDIT THIS FILE'
echo "// Generated from $0 $*"
echo '#include <string>'
echo '#include "tools/fidl/fidlc/include/fidl/json_schema.h"'
echo 'std::string JsonSchema::schema_ = R"JSON('
cat "$@"
echo ')JSON";'