Home | History | Annotate | only in /external/chromium/net/tools/tld_cleanup
Up to higher level directory
NameDateSize
README11-Dec-2013610
tld_cleanup.cc11-Dec-201310K
tld_cleanup.gyp11-Dec-2013608

README

      1 When updating src/net/base/effective_tld_names.dat:
      2 
      3 1. Build tld_cleanup.exe (the "(net)" > "tld_cleanup" project)
      4 2. 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.
      7 3. 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.
     11 4. Check in the updated effective_tld_names.dat, effective_tld_names.gperf,
     12    and effective_tld_names.cc together.
     13