OILS / pea / NINJA_subgraph.py View on Github | oilshell.org

19 lines, 9 significant
1"""
2pea/NINJA_subgraph.py
3"""
4
5from __future__ import print_function
6
7from build.ninja_lib import log
8
9_ = log
10
11
12def NinjaGraph(ru):
13 n = ru.n
14
15 ru.comment('Generated by %s' % __name__)
16
17 ru.py_binary('pea/pea_main.py',
18 deps_base_dir='prebuilt/ninja',
19 template='pea')