8751512aaa
This reverts commit 37575bf3ca
.
Change-Id: Ia31abbd4906ddeed406f3da1128bc4d4177abf24
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/201603
Reviewed-by: Hal Canary <halcanary@google.com>
Commit-Queue: Hal Canary <halcanary@google.com>
20 lines
693 B
Python
Executable File
20 lines
693 B
Python
Executable File
#! /usr/bin/env python
|
|
# Copyright 2019 Google LLC.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
import glob
|
|
import os
|
|
head = '''# Copyright 2019 Google LLC.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
'''
|
|
def gni(path, name, files):
|
|
with open(path, 'w') as o:
|
|
o.write('%s\n%s = get_path_info([\n' % (head, name))
|
|
for x in sorted(files):
|
|
o.write(' "%s",\n' % x)
|
|
o.write('], "abspath")\n')
|
|
if __name__ == '__main__':
|
|
os.chdir(os.path.dirname(__file__))
|
|
gni('examples.gni', 'examples_sources', glob.glob('../docs/examples/*.cpp'))
|