Name Description Size
__init__.py 0
generate_licenses.py Generates license markdown for a prebuilt version of WebRTC. Licenses are taken from dependent libraries which are determined by GN desc command `gn desc` on all targets specified via `--target` argument. One can see all dependencies by invoking this command: $ gn.py desc --all --format=json <out_directory> <target> | \ vpython3 -m json.tool (see "deps" subarray) Libraries are mapped to licenses via LIB_TO_LICENSES_DICT dictionary. 10997
generate_licenses_test.py { "target1": { "deps": [ "//a/b/third_party/libname1:c", "//a/b/third_party/libname2:c(//d/e/f:g)", "//a/b/third_party/libname3/c:d(//e/f/g:h)", "//a/b/not_third_party/c" ] } } 4509