Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
parse_manifest Namespace Reference

Functions

 main ()
 

Detailed Description

 Parses manifest file and dumps it to json.

Function Documentation

◆ main()

parse_manifest.main ( )

Definition at line 17 of file parse_manifest.py.

17def main():
18 parser = argparse.ArgumentParser()
19
20 parser.add_argument('--input', dest='file_path', action='store', required=True)
21 parser.add_argument('--clang-cpu', dest='clang_cpu', action='store', required=True)
22
23 args = parser.parse_args()
24
25 with open(args.file_path) as f:
26 data = json.load(f)
27
28 output = {}
29 target = args.clang_cpu + '-fuchsia'
30
31 for d in data:
32 if target in d['target']:
33 for runtime in d['runtime']:
34 # key contains the soname and the cflags used to compile it.
35 # this allows us to distinguish between different sanitizers
36 # and experiments
37 key = runtime['soname'] + ''.join(d['cflags'])
38 md5 = hashlib.md5(key.encode()).hexdigest()
39 hash_key = 'md5_%s' % md5
40 # Uncomment this line to get the hash keys
41 # print runtime['dist'], d['cflags'], hash_key
42 output[hash_key] = os.path.dirname(runtime['dist'])
43
44 print(json.dumps(output))
45
46 return 0
47
48
void print(void *str)
Definition bridge.cpp:126
Definition main.py:1