tree: b7478f0b5f804bedf4cf604486b3e9481d739d62 [path history] [tgz]
  1. .style.yapf
  2. gn_ast.py
  3. gn_editor.py
  4. jni_refactor.py
  5. json_gn_editor.py
  6. json_gn_editor_test.py
  7. README.md
  8. utils.py
build/gn_ast/README.md

GN AST

A Python library for working with GN files via abstract syntax tree (AST).

JNI Refactor Example

This library was originally created to perform the refactor within jni_refactor.py. The file is left as an example.

# To apply to all files:
find -name BUILD.gn > file-list.txt
# To apply to those that match a pattern:
grep -r --files-with-matches --include "BUILD.gn" "some pattern" > file-list.txt

# To run one-at-a-time:
for f in $(cat file-list.txt); do python3 jni_refactor.py "$f"; done
# To run in parallel:
parallel python3 jni_refactor.py -- $(cat file-list.txt)