diff options
author | tsepez <tsepez@chromium.org> | 2016-09-15 14:01:31 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-15 14:01:31 -0700 |
commit | d9871435eb7cea00a173baf780934f9d3525329a (patch) | |
tree | ec96dffc6e25865d6015f754b1a6406621c31bf4 /BUILD.gn | |
parent | 0a17fafd723e8684d1deb4b5ceea58967a0154da (diff) | |
download | pdfium-d9871435eb7cea00a173baf780934f9d3525329a.tar.xz |
Add string pools to save storage.
Adds string hashes so CFX strings will interoperate with
STL unordered containers.
These will be employed per-document in a subsequent cl.
BUG=pdfium:597
Review-Url: https://codereview.chromium.org/2341683005
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -709,6 +709,7 @@ static_library("fxcrt") { "core/fxcrt/include/cfx_count_ref.h", "core/fxcrt/include/cfx_observable.h", "core/fxcrt/include/cfx_retain_ptr.h", + "core/fxcrt/include/cfx_string_pool_template.h", "core/fxcrt/include/fx_basic.h", "core/fxcrt/include/fx_coordinates.h", "core/fxcrt/include/fx_ext.h", @@ -1654,6 +1655,7 @@ test("pdfium_unittests") { "core/fxcrt/cfx_count_ref_unittest.cpp", "core/fxcrt/cfx_observable_unittest.cpp", "core/fxcrt/cfx_retain_ptr_unittest.cpp", + "core/fxcrt/cfx_string_pool_template_unittest.cpp", "core/fxcrt/fx_basic_bstring_unittest.cpp", "core/fxcrt/fx_basic_gcc_unittest.cpp", "core/fxcrt/fx_basic_memmgr_unittest.cpp", |