Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: BUILD.gn

Issue 2341683005: Add string pools to save storage. (Closed)
Patch Set: fix compile Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build_overrides/v8.gni") 5 import("//build_overrides/v8.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("pdfium.gni") 7 import("pdfium.gni")
8 8
9 config("pdfium_common_config") { 9 config("pdfium_common_config") {
10 cflags = [] 10 cflags = []
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 "core/fxcrt/fx_xml_composer.cpp", 702 "core/fxcrt/fx_xml_composer.cpp",
703 "core/fxcrt/fx_xml_parser.cpp", 703 "core/fxcrt/fx_xml_parser.cpp",
704 "core/fxcrt/fxcrt_posix.cpp", 704 "core/fxcrt/fxcrt_posix.cpp",
705 "core/fxcrt/fxcrt_posix.h", 705 "core/fxcrt/fxcrt_posix.h",
706 "core/fxcrt/fxcrt_stream.cpp", 706 "core/fxcrt/fxcrt_stream.cpp",
707 "core/fxcrt/fxcrt_windows.cpp", 707 "core/fxcrt/fxcrt_windows.cpp",
708 "core/fxcrt/fxcrt_windows.h", 708 "core/fxcrt/fxcrt_windows.h",
709 "core/fxcrt/include/cfx_count_ref.h", 709 "core/fxcrt/include/cfx_count_ref.h",
710 "core/fxcrt/include/cfx_observable.h", 710 "core/fxcrt/include/cfx_observable.h",
711 "core/fxcrt/include/cfx_retain_ptr.h", 711 "core/fxcrt/include/cfx_retain_ptr.h",
712 "core/fxcrt/include/cfx_string_pool_template.h",
712 "core/fxcrt/include/fx_basic.h", 713 "core/fxcrt/include/fx_basic.h",
713 "core/fxcrt/include/fx_coordinates.h", 714 "core/fxcrt/include/fx_coordinates.h",
714 "core/fxcrt/include/fx_ext.h", 715 "core/fxcrt/include/fx_ext.h",
715 "core/fxcrt/include/fx_memory.h", 716 "core/fxcrt/include/fx_memory.h",
716 "core/fxcrt/include/fx_safe_types.h", 717 "core/fxcrt/include/fx_safe_types.h",
717 "core/fxcrt/include/fx_stream.h", 718 "core/fxcrt/include/fx_stream.h",
718 "core/fxcrt/include/fx_string.h", 719 "core/fxcrt/include/fx_string.h",
719 "core/fxcrt/include/fx_system.h", 720 "core/fxcrt/include/fx_system.h",
720 "core/fxcrt/include/fx_ucd.h", 721 "core/fxcrt/include/fx_ucd.h",
721 "core/fxcrt/include/fx_xml.h", 722 "core/fxcrt/include/fx_xml.h",
(...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after
1647 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp", 1648 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp",
1648 "core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp", 1649 "core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp",
1649 "core/fpdfdoc/cpdf_filespec_unittest.cpp", 1650 "core/fpdfdoc/cpdf_filespec_unittest.cpp",
1650 "core/fpdfdoc/cpdf_formfield_unittest.cpp", 1651 "core/fpdfdoc/cpdf_formfield_unittest.cpp",
1651 "core/fpdftext/fpdf_text_int_unittest.cpp", 1652 "core/fpdftext/fpdf_text_int_unittest.cpp",
1652 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp", 1653 "core/fxcodec/codec/fx_codec_jpx_unittest.cpp",
1653 "core/fxcodec/jbig2/JBig2_Image_unittest.cpp", 1654 "core/fxcodec/jbig2/JBig2_Image_unittest.cpp",
1654 "core/fxcrt/cfx_count_ref_unittest.cpp", 1655 "core/fxcrt/cfx_count_ref_unittest.cpp",
1655 "core/fxcrt/cfx_observable_unittest.cpp", 1656 "core/fxcrt/cfx_observable_unittest.cpp",
1656 "core/fxcrt/cfx_retain_ptr_unittest.cpp", 1657 "core/fxcrt/cfx_retain_ptr_unittest.cpp",
1658 "core/fxcrt/cfx_string_pool_template_unittest.cpp",
1657 "core/fxcrt/fx_basic_bstring_unittest.cpp", 1659 "core/fxcrt/fx_basic_bstring_unittest.cpp",
1658 "core/fxcrt/fx_basic_gcc_unittest.cpp", 1660 "core/fxcrt/fx_basic_gcc_unittest.cpp",
1659 "core/fxcrt/fx_basic_memmgr_unittest.cpp", 1661 "core/fxcrt/fx_basic_memmgr_unittest.cpp",
1660 "core/fxcrt/fx_basic_util_unittest.cpp", 1662 "core/fxcrt/fx_basic_util_unittest.cpp",
1661 "core/fxcrt/fx_basic_wstring_unittest.cpp", 1663 "core/fxcrt/fx_basic_wstring_unittest.cpp",
1662 "core/fxcrt/fx_bidi_unittest.cpp", 1664 "core/fxcrt/fx_bidi_unittest.cpp",
1663 "core/fxcrt/fx_extension_unittest.cpp", 1665 "core/fxcrt/fx_extension_unittest.cpp",
1664 "core/fxcrt/fx_system_unittest.cpp", 1666 "core/fxcrt/fx_system_unittest.cpp",
1665 "core/fxge/dib/fx_dib_engine_unittest.cpp", 1667 "core/fxge/dib/fx_dib_engine_unittest.cpp",
1666 "fpdfsdk/fpdfdoc_unittest.cpp", 1668 "fpdfsdk/fpdfdoc_unittest.cpp",
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
1754 } 1756 }
1755 1757
1756 if (pdf_is_standalone) { 1758 if (pdf_is_standalone) {
1757 source_set("samples") { 1759 source_set("samples") {
1758 testonly = true 1760 testonly = true
1759 deps = [ 1761 deps = [
1760 "//samples", 1762 "//samples",
1761 ] 1763 ]
1762 } 1764 }
1763 } 1765 }
OLDNEW
« no previous file with comments | « no previous file | core/fxcrt/cfx_string_pool_template_unittest.cpp » ('j') | core/fxcrt/cfx_string_pool_template_unittest.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698