aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn/create_sksl_enums.py
blob: e7f011559bcc2fec0a9f1ae1f08b69a4efb00e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
#
# Copyright 2017 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import os
import subprocess
import sys

src = open(sys.argv[1], 'r')
dst = open(sys.argv[2], 'w')
dst.write('STRINGIFY(')
for line in src.readlines():
    if not line.startswith("#"):
        dst.write(line)
dst.write(')\n')
src.close()
dst.close()