def main()

in tools/create_bazel_hashdict.py [0:0]


def main(unused_argv):
  with open(FLAGS.output, "w") as f:
    f.write("# Automatically generated by ")
    print_command_line(f)
    f.write("\n\n%s = {\n" % FLAGS.map_name)
    get_hash_map(f)
    f.write("}\n")