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

Side by Side Diff: pdfium.gyp

Issue 1351383004: Change nonstd::unique_ptr to take a custom deleter. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: forgot the unit test Created 5 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 { 1 {
2 'variables': { 2 'variables': {
3 'pdf_use_skia%': 0, 3 'pdf_use_skia%': 0,
4 'conditions': [ 4 'conditions': [
5 ['OS=="linux"', { 5 ['OS=="linux"', {
6 'bundle_freetype%': 0, 6 'bundle_freetype%': 0,
7 }, { # On Android there's no system FreeType. On Windows and Mac, only a 7 }, { # On Android there's no system FreeType. On Windows and Mac, only a
8 # few methods are used from it. 8 # few methods are used from it.
9 'bundle_freetype%': 1, 9 'bundle_freetype%': 1,
10 }], 10 }],
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 '<(DEPTH)/testing/gtest.gyp:gtest', 711 '<(DEPTH)/testing/gtest.gyp:gtest',
712 'pdfium', 712 'pdfium',
713 ], 713 ],
714 'include_dirs': [ 714 'include_dirs': [
715 '<(DEPTH)' 715 '<(DEPTH)'
716 ], 716 ],
717 'sources': [ 717 'sources': [
718 'core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp', 718 'core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp',
719 'core/src/fxcrt/fx_basic_bstring_unittest.cpp', 719 'core/src/fxcrt/fx_basic_bstring_unittest.cpp',
720 'core/src/fxcrt/fx_basic_memmgr_unittest.cpp', 720 'core/src/fxcrt/fx_basic_memmgr_unittest.cpp',
721 'core/src/fxcrt/fx_basic_unique_ptr_unittest.cpp',
721 'core/src/fxcrt/fx_basic_wstring_unittest.cpp', 722 'core/src/fxcrt/fx_basic_wstring_unittest.cpp',
722 'core/src/fxcrt/fx_bidi_unittest.cpp', 723 'core/src/fxcrt/fx_bidi_unittest.cpp',
723 'core/src/fxcrt/fx_system_unittest.cpp', 724 'core/src/fxcrt/fx_system_unittest.cpp',
724 'testing/fx_string_testhelpers.h', 725 'testing/fx_string_testhelpers.h',
725 'testing/fx_string_testhelpers.cpp', 726 'testing/fx_string_testhelpers.cpp',
726 ], 727 ],
727 }, 728 },
728 { 729 {
729 'target_name': 'pdfium_embeddertests', 730 'target_name': 'pdfium_embeddertests',
730 'type': 'executable', 731 'type': 'executable',
(...skipping 23 matching lines...) Expand all
754 'testing/embedder_test.cpp', 755 'testing/embedder_test.cpp',
755 'testing/embedder_test.h', 756 'testing/embedder_test.h',
756 'testing/embedder_test_mock_delegate.h', 757 'testing/embedder_test_mock_delegate.h',
757 'testing/embedder_test_timer_handling_delegate.h', 758 'testing/embedder_test_timer_handling_delegate.h',
758 'testing/fx_string_testhelpers.cpp', 759 'testing/fx_string_testhelpers.cpp',
759 'testing/fx_string_testhelpers.h', 760 'testing/fx_string_testhelpers.h',
760 ], 761 ],
761 }, 762 },
762 ], 763 ],
763 } 764 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698