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

Side by Side Diff: pdfium.gyp

Issue 1805683002: Add a Retained Pointer smart class. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase, improve Reset(). Created 4 years, 8 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
« no previous file with comments | « core/fxcrt/include/fx_memory.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 PDFium Authors. All rights reserved. 1 # Copyright 2015 PDFium 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 { 5 {
6 'variables': { 6 'variables': {
7 # TODO(thakis): Enable this, pdfium:29 7 # TODO(thakis): Enable this, pdfium:29
8 #'chromium_code': 1, 8 #'chromium_code': 1,
9 9
10 'variables': { 10 'variables': {
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 # conversion to check that an address is 16-bit aligned (benign). 586 # conversion to check that an address is 16-bit aligned (benign).
587 'cflags_c': [ '-Wno-pointer-to-int-cast' ], 587 'cflags_c': [ '-Wno-pointer-to-int-cast' ],
588 }], 588 }],
589 ], 589 ],
590 }, 590 },
591 { 591 {
592 'target_name': 'fxcrt', 592 'target_name': 'fxcrt',
593 'type': 'static_library', 593 'type': 'static_library',
594 'sources': [ 594 'sources': [
595 'core/fxcrt/extension.h', 595 'core/fxcrt/extension.h',
596 'core/fxcrt/fxcrt_platforms.cpp',
597 'core/fxcrt/fxcrt_platforms.h',
598 'core/fxcrt/fxcrt_posix.cpp',
599 'core/fxcrt/fxcrt_posix.h',
600 'core/fxcrt/fxcrt_stream.cpp',
601 'core/fxcrt/fxcrt_windows.cpp',
602 'core/fxcrt/fxcrt_windows.h',
603 'core/fxcrt/fx_basic_array.cpp', 596 'core/fxcrt/fx_basic_array.cpp',
604 'core/fxcrt/fx_basic_bstring.cpp', 597 'core/fxcrt/fx_basic_bstring.cpp',
605 'core/fxcrt/fx_basic_buffer.cpp', 598 'core/fxcrt/fx_basic_buffer.cpp',
606 'core/fxcrt/fx_basic_coords.cpp', 599 'core/fxcrt/fx_basic_coords.cpp',
607 'core/fxcrt/fx_basic_gcc.cpp', 600 'core/fxcrt/fx_basic_gcc.cpp',
608 'core/fxcrt/fx_basic_list.cpp', 601 'core/fxcrt/fx_basic_list.cpp',
609 'core/fxcrt/fx_basic_memmgr.cpp', 602 'core/fxcrt/fx_basic_memmgr.cpp',
610 'core/fxcrt/fx_basic_plex.cpp', 603 'core/fxcrt/fx_basic_plex.cpp',
611 'core/fxcrt/fx_basic_utf.cpp', 604 'core/fxcrt/fx_basic_utf.cpp',
612 'core/fxcrt/fx_basic_util.cpp', 605 'core/fxcrt/fx_basic_util.cpp',
613 'core/fxcrt/fx_basic_wstring.cpp', 606 'core/fxcrt/fx_basic_wstring.cpp',
614 'core/fxcrt/fx_bidi.cpp', 607 'core/fxcrt/fx_bidi.cpp',
615 'core/fxcrt/fx_bidi.h', 608 'core/fxcrt/fx_bidi.h',
616 'core/fxcrt/fx_extension.cpp', 609 'core/fxcrt/fx_extension.cpp',
617 'core/fxcrt/fx_ucddata.cpp', 610 'core/fxcrt/fx_ucddata.cpp',
618 'core/fxcrt/fx_unicode.cpp', 611 'core/fxcrt/fx_unicode.cpp',
619 'core/fxcrt/fx_xml_composer.cpp', 612 'core/fxcrt/fx_xml_composer.cpp',
620 'core/fxcrt/fx_xml_parser.cpp', 613 'core/fxcrt/fx_xml_parser.cpp',
621 'core/fxcrt/include/fx_basic.h', 614 'core/fxcrt/fxcrt_platforms.cpp',
622 'core/fxcrt/include/fx_coordinates.h', 615 'core/fxcrt/fxcrt_platforms.h',
623 'core/fxcrt/include/fx_ext.h', 616 'core/fxcrt/fxcrt_posix.cpp',
624 'core/fxcrt/include/fx_memory.h', 617 'core/fxcrt/fxcrt_posix.h',
625 'core/fxcrt/include/fx_safe_types.h', 618 'core/fxcrt/fxcrt_stream.cpp',
626 'core/fxcrt/include/fx_stream.h', 619 'core/fxcrt/fxcrt_windows.cpp',
627 'core/fxcrt/include/fx_string.h', 620 'core/fxcrt/fxcrt_windows.h',
628 'core/fxcrt/include/fx_system.h', 621 'core/fxcrt/include/cfx_retain_ptr.h',
629 'core/fxcrt/include/fx_ucd.h', 622 'core/include/fxcrt/fx_basic.h',
630 'core/fxcrt/include/fx_xml.h', 623 'core/include/fxcrt/fx_bidi.h',
624 'core/include/fxcrt/fx_coordinates.h',
625 'core/include/fxcrt/fx_ext.h',
626 'core/include/fxcrt/fx_memory.h',
627 'core/include/fxcrt/fx_safe_types.h',
628 'core/include/fxcrt/fx_stream.h',
629 'core/include/fxcrt/fx_string.h',
630 'core/include/fxcrt/fx_system.h',
631 'core/include/fxcrt/fx_ucd.h',
632 'core/include/fxcrt/fx_xml.h',
631 'core/fxcrt/plex.h', 633 'core/fxcrt/plex.h',
632 'core/fxcrt/xml_int.h', 634 'core/fxcrt/xml_int.h',
633 ], 635 ],
634 'conditions': [ 636 'conditions': [
635 ['pdf_enable_xfa==1', { 637 ['pdf_enable_xfa==1', {
636 'sources': [ 638 'sources': [
637 'core/fxcrt/include/fx_arb.h', 639 'core/fxcrt/include/fx_arb.h',
638 'core/fxcrt/fx_arabic.cpp', 640 'core/fxcrt/fx_arabic.cpp',
639 'core/fxcrt/fx_arabic.h', 641 'core/fxcrt/fx_arabic.h',
640 'core/fxcrt/fx_basic_maps.cpp', 642 'core/fxcrt/fx_basic_maps.cpp',
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 { 890 {
889 'target_name': 'pdfium_unittests', 891 'target_name': 'pdfium_unittests',
890 'type': 'executable', 892 'type': 'executable',
891 'dependencies': [ 893 'dependencies': [
892 '<(DEPTH)/testing/gtest.gyp:gtest_main', 894 '<(DEPTH)/testing/gtest.gyp:gtest_main',
893 '<(DEPTH)/testing/gtest.gyp:gtest', 895 '<(DEPTH)/testing/gtest.gyp:gtest',
894 'pdfium', 896 'pdfium',
895 'test_support', 897 'test_support',
896 ], 898 ],
897 'sources': [ 899 'sources': [
900 'core/fxcrt/cfx_retain_ptr_unittest.cpp',
898 'core/fpdfapi/fpdf_font/fpdf_font_cid_unittest.cpp', 901 'core/fpdfapi/fpdf_font/fpdf_font_cid_unittest.cpp',
899 'core/fpdfapi/fpdf_font/fpdf_font_unittest.cpp', 902 'core/fpdfapi/fpdf_font/fpdf_font_unittest.cpp',
900 'core/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp', 903 'core/fpdfapi/fpdf_page/fpdf_page_parser_old_unittest.cpp',
901 'core/fpdfapi/fpdf_parser/cpdf_object_unittest.cpp', 904 'core/fpdfapi/fpdf_parser/cpdf_object_unittest.cpp',
902 'core/fpdfapi/fpdf_parser/cpdf_parser_unittest.cpp', 905 'core/fpdfapi/fpdf_parser/cpdf_parser_unittest.cpp',
903 'core/fpdfapi/fpdf_parser/cpdf_simple_parser_unittest.cpp', 906 'core/fpdfapi/fpdf_parser/cpdf_simple_parser_unittest.cpp',
904 'core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp', 907 'core/fpdfapi/fpdf_parser/cpdf_syntax_parser_unittest.cpp',
905 'core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp', 908 'core/fpdfapi/fpdf_parser/fpdf_parser_decode_unittest.cpp',
906 'core/fpdfdoc/doc_basic_unittest.cpp', 909 'core/fpdfdoc/doc_basic_unittest.cpp',
907 'core/fpdftext/fpdf_text_int_unittest.cpp', 910 'core/fpdftext/fpdf_text_int_unittest.cpp',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
1036 'fpdfsdk/include/fpdfxfa/fpdfxfa_app.h', 1039 'fpdfsdk/include/fpdfxfa/fpdfxfa_app.h',
1037 'fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h', 1040 'fpdfsdk/include/fpdfxfa/fpdfxfa_doc.h',
1038 'fpdfsdk/include/fpdfxfa/fpdfxfa_page.h', 1041 'fpdfsdk/include/fpdfxfa/fpdfxfa_page.h',
1039 'fpdfsdk/include/fpdfxfa/fpdfxfa_util.h', 1042 'fpdfsdk/include/fpdfxfa/fpdfxfa_util.h',
1040 ], 1043 ],
1041 }, 1044 },
1042 ] 1045 ]
1043 }], 1046 }],
1044 ] 1047 ]
1045 } 1048 }
OLDNEW
« no previous file with comments | « core/fxcrt/include/fx_memory.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698