Flutter Engine
The Flutter Engine
third_party
skia
gn
make_gm_gni.py
Go to the documentation of this file.
1
#! /usr/bin/env python
2
# Copyright 2019 Google LLC.
3
# Use of this source code is governed by a BSD-style license that can be
4
# found in the LICENSE file.
5
import
os
6
import
glob
7
os.chdir(os.path.dirname(__file__))
8
with
open(
'gm.gni'
,
'w'
)
as
o:
9
o.write(
'''# Copyright 2016 Google Inc.
10
#
11
# Use of this source code is governed by a BSD-style license that can be
12
# found in the LICENSE file.
13
14
# Things are easiest for everyone if these source paths are absolute.
15
_gm = get_path_info("../gm", "abspath")
16
17
gm_sources = [
18
'''
)
19
for
path
in
sorted(glob.glob(
'../gm/*.c*'
)):
20
o.write(
' "%s",\n'
% path.replace(
'../gm'
,
'$_gm'
))
21
o.write(
']\n'
)
Generated on Sun Jun 23 2024 21:56:01 for Flutter Engine by
1.9.4