• Home
  • History
  • Annotate
  • only in /external/chromium/net/tools/tld_cleanup/
NameDateSize

..11-Jul-20144 KiB

README11-Jul-2014610

tld_cleanup.cc11-Jul-201410 KiB

tld_cleanup.gyp11-Jul-2014608

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