Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README | D | 03-May-2024 | 610 | 13 | 11 | |
tld_cleanup.cc | D | 03-May-2024 | 10 KiB | 299 | 213 | |
tld_cleanup.gyp | D | 03-May-2024 | 608 | 29 | 26 |
README
1When updating src/net/base/effective_tld_names.dat: 2 31. Build tld_cleanup.exe (the "(net)" > "tld_cleanup" project) 42. Run it (no arguments needed), typically from src/chrome/Release or 5 src/chrome/Debug. It will re-generate 6 src/net/base/effective_tld_names.gperf. 73. Run gperf on the new effective_tld_names.gperf: 8 gperf -a -L "C++" -C -c -o -t -k '*' -NFindDomain -D -m 5 \ 9 effective_tld_names.gperf > effective_tld_names.cc 10 It will produce a new effective_tld_names.cc. 114. Check in the updated effective_tld_names.dat, effective_tld_names.gperf, 12 and effective_tld_names.cc together. 13