Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
BUILD.gn | D | 03-May-2024 | 306 | 15 | 13 | |
OWNERS | D | 03-May-2024 | 17 | 2 | 1 | |
PRESUBMIT.py | D | 03-May-2024 | 1.1 KiB | 33 | 21 | |
README | D | 03-May-2024 | 1.3 KiB | 29 | 21 | |
make_dafsa.py | D | 03-May-2024 | 13.9 KiB | 470 | 353 | |
make_dafsa_unittest.py | D | 03-May-2024 | 22.1 KiB | 758 | 475 | |
tld_cleanup.cc | D | 03-May-2024 | 3.8 KiB | 95 | 58 | |
tld_cleanup.gyp | D | 03-May-2024 | 524 | 24 | 22 | |
tld_cleanup_util.cc | D | 03-May-2024 | 8.9 KiB | 256 | 191 | |
tld_cleanup_util.h | D | 03-May-2024 | 1.4 KiB | 49 | 27 | |
tld_cleanup_util_unittest.cc | D | 03-May-2024 | 6.7 KiB | 169 | 154 |
README
1When updating src/net/base/registry_controlled_domains/effective_tld_names.dat: 2 31. Obtain the new effective_tld_names.dat, probably by downloading 4 http://goo.gl/Ji2bB 5 62. Remove whitespace from the ends of the lines. 7 You could possibly use something like: 8 sed -i -e "s/\s*$//g" \ 9 src/net/base/registry_controlled_domains/effective_tld_names.dat 10 113. Add the Chromium note back in just after the license at the top, and just 12 before '===BEGIN ICANN DOMAINS==='. Ensure there is an empty line above and 13 two empty lines below the note. The note should say: 14// Chromium note: this is based on Mozilla's file: 15// http://mxr.mozilla.org/mozilla-central/source/netwerk/dns/effective_tld_names.dat?raw=1 16 174. Build tld_cleanup (the "(net)" > "tld_cleanup" project) 18 195. Run it (no arguments needed), typically from src/build/Release or 20 src/build/Debug. It will re-generate 21 src/net/base/registry_controlled_domains/effective_tld_names.gperf. 22 236. Check in the updated effective_tld_names.dat, effective_tld_names.gperf 24 25Note that gperf is no longer used for effective_tld_names, but when building 26chromium the file effective_tld_names.gperf will be parsed by make_dafsa.py 27to generate the file effective_tld_names-inc.cc, which is included in 28registry_controlled_domain.cc 29