Home | History | Annotate | Download | only in generated-header
      1 #!/usr/bin/env python
      2 
      3 # Copyright (c) 2013 Google Inc. All rights reserved.
      4 # Use of this source code is governed by a BSD-style license that can be
      5 # found in the LICENSE file.
      6 
      7 import os
      8 import sys
      9 
     10 outfile = sys.argv[1]
     11 open(outfile, 'w').write('const char kFoo[] = "%s";' % sys.argv[2])
     12