Lines Matching defs:json
8 Finds unreachable gn targets by analysing --ide=json output
12 # Generate json file with targets info, will be located at out/project.json:
13 gn gen out --ide=json
15 find_unreachable.py --from //:all --from //ci:test_all --json-file out/project.json
17 find_unreachable.py --from //:all --json-file out/project.json --no-refs
21 import json
52 '--json-file', required=True,
53 help='JSON file from gn gen with --ide=json option')
65 targets_graph = json.load(json_file)['targets']