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

Side by Side Diff: pdfium.gyp

Issue 1197643002: Cleanup IFX_BidiChar (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: add tests, similarity 20 Created 5 years, 4 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
« core/src/fxcrt/fx_ucddata.cpp ('K') | « core/src/fxcrt/fx_unicode.cpp ('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 { 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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 # conversion to check that an address is 16-bit aligned (benign). 385 # conversion to check that an address is 16-bit aligned (benign).
386 'cflags_c': [ '-Wno-pointer-to-int-cast' ], 386 'cflags_c': [ '-Wno-pointer-to-int-cast' ],
387 }], 387 }],
388 ], 388 ],
389 }, 389 },
390 { 390 {
391 'target_name': 'fxcrt', 391 'target_name': 'fxcrt',
392 'type': 'static_library', 392 'type': 'static_library',
393 'ldflags': [ '-L<(PRODUCT_DIR)',], 393 'ldflags': [ '-L<(PRODUCT_DIR)',],
394 'sources': [ 394 'sources': [
395 'core/include/fxcrt/fx_arb.h',
396 'core/include/fxcrt/fx_basic.h', 395 'core/include/fxcrt/fx_basic.h',
396 'core/include/fxcrt/fx_bidi.h',
397 'core/include/fxcrt/fx_coordinates.h', 397 'core/include/fxcrt/fx_coordinates.h',
398 'core/include/fxcrt/fx_ext.h', 398 'core/include/fxcrt/fx_ext.h',
399 'core/include/fxcrt/fx_memory.h', 399 'core/include/fxcrt/fx_memory.h',
400 'core/include/fxcrt/fx_safe_types.h', 400 'core/include/fxcrt/fx_safe_types.h',
401 'core/include/fxcrt/fx_stream.h', 401 'core/include/fxcrt/fx_stream.h',
402 'core/include/fxcrt/fx_string.h', 402 'core/include/fxcrt/fx_string.h',
403 'core/include/fxcrt/fx_system.h', 403 'core/include/fxcrt/fx_system.h',
404 'core/include/fxcrt/fx_ucd.h', 404 'core/include/fxcrt/fx_ucd.h',
405 'core/include/fxcrt/fx_xml.h', 405 'core/include/fxcrt/fx_xml.h',
406 'core/src/fxcrt/extension.h', 406 'core/src/fxcrt/extension.h',
407 'core/src/fxcrt/fxcrt_platforms.cpp', 407 'core/src/fxcrt/fxcrt_platforms.cpp',
408 'core/src/fxcrt/fxcrt_platforms.h', 408 'core/src/fxcrt/fxcrt_platforms.h',
409 'core/src/fxcrt/fxcrt_posix.cpp', 409 'core/src/fxcrt/fxcrt_posix.cpp',
410 'core/src/fxcrt/fxcrt_posix.h', 410 'core/src/fxcrt/fxcrt_posix.h',
411 'core/src/fxcrt/fxcrt_windows.cpp', 411 'core/src/fxcrt/fxcrt_windows.cpp',
412 'core/src/fxcrt/fxcrt_windows.h', 412 'core/src/fxcrt/fxcrt_windows.h',
413 'core/src/fxcrt/fx_arabic.cpp',
414 'core/src/fxcrt/fx_arabic.h',
415 'core/src/fxcrt/fx_basic_array.cpp', 413 'core/src/fxcrt/fx_basic_array.cpp',
416 'core/src/fxcrt/fx_basic_bstring.cpp', 414 'core/src/fxcrt/fx_basic_bstring.cpp',
417 'core/src/fxcrt/fx_basic_buffer.cpp', 415 'core/src/fxcrt/fx_basic_buffer.cpp',
418 'core/src/fxcrt/fx_basic_coords.cpp', 416 'core/src/fxcrt/fx_basic_coords.cpp',
419 'core/src/fxcrt/fx_basic_gcc.cpp', 417 'core/src/fxcrt/fx_basic_gcc.cpp',
420 'core/src/fxcrt/fx_basic_list.cpp', 418 'core/src/fxcrt/fx_basic_list.cpp',
421 'core/src/fxcrt/fx_basic_maps.cpp', 419 'core/src/fxcrt/fx_basic_maps.cpp',
422 'core/src/fxcrt/fx_basic_memmgr.cpp', 420 'core/src/fxcrt/fx_basic_memmgr.cpp',
423 'core/src/fxcrt/fx_basic_plex.cpp', 421 'core/src/fxcrt/fx_basic_plex.cpp',
424 'core/src/fxcrt/fx_basic_utf.cpp', 422 'core/src/fxcrt/fx_basic_utf.cpp',
425 'core/src/fxcrt/fx_basic_util.cpp', 423 'core/src/fxcrt/fx_basic_util.cpp',
426 'core/src/fxcrt/fx_basic_wstring.cpp', 424 'core/src/fxcrt/fx_basic_wstring.cpp',
425 'core/src/fxcrt/fx_bidi.cpp',
427 'core/src/fxcrt/fx_extension.cpp', 426 'core/src/fxcrt/fx_extension.cpp',
428 'core/src/fxcrt/fx_ucddata.cpp', 427 'core/src/fxcrt/fx_ucddata.cpp',
429 'core/src/fxcrt/fx_unicode.cpp', 428 'core/src/fxcrt/fx_unicode.cpp',
430 'core/src/fxcrt/fx_xml_composer.cpp', 429 'core/src/fxcrt/fx_xml_composer.cpp',
431 'core/src/fxcrt/fx_xml_parser.cpp', 430 'core/src/fxcrt/fx_xml_parser.cpp',
432 'core/src/fxcrt/plex.h', 431 'core/src/fxcrt/plex.h',
433 'core/src/fxcrt/xml_int.h', 432 'core/src/fxcrt/xml_int.h',
434 ], 433 ],
435 }, 434 },
436 { 435 {
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 'pdfium', 709 'pdfium',
711 ], 710 ],
712 'include_dirs': [ 711 'include_dirs': [
713 '<(DEPTH)' 712 '<(DEPTH)'
714 ], 713 ],
715 'sources': [ 714 'sources': [
716 'core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp', 715 'core/src/fxcodec/codec/fx_codec_jpx_unittest.cpp',
717 'core/src/fxcrt/fx_basic_bstring_unittest.cpp', 716 'core/src/fxcrt/fx_basic_bstring_unittest.cpp',
718 'core/src/fxcrt/fx_basic_memmgr_unittest.cpp', 717 'core/src/fxcrt/fx_basic_memmgr_unittest.cpp',
719 'core/src/fxcrt/fx_basic_wstring_unittest.cpp', 718 'core/src/fxcrt/fx_basic_wstring_unittest.cpp',
719 'core/src/fxcrt/fx_bidi_unittest.cpp',
720 'core/src/fxcrt/fx_system_unittest.cpp', 720 'core/src/fxcrt/fx_system_unittest.cpp',
721 'testing/fx_string_testhelpers.h', 721 'testing/fx_string_testhelpers.h',
722 'testing/fx_string_testhelpers.cpp', 722 'testing/fx_string_testhelpers.cpp',
723 ], 723 ],
724 }, 724 },
725 { 725 {
726 'target_name': 'pdfium_embeddertests', 726 'target_name': 'pdfium_embeddertests',
727 'type': 'executable', 727 'type': 'executable',
728 'dependencies': [ 728 'dependencies': [
729 '<(DEPTH)/testing/gmock.gyp:gmock', 729 '<(DEPTH)/testing/gmock.gyp:gmock',
(...skipping 18 matching lines...) Expand all
748 'testing/embedder_test.cpp', 748 'testing/embedder_test.cpp',
749 'testing/embedder_test.h', 749 'testing/embedder_test.h',
750 'testing/embedder_test_mock_delegate.h', 750 'testing/embedder_test_mock_delegate.h',
751 'testing/embedder_test_timer_handling_delegate.h', 751 'testing/embedder_test_timer_handling_delegate.h',
752 'testing/fx_string_testhelpers.cpp', 752 'testing/fx_string_testhelpers.cpp',
753 'testing/fx_string_testhelpers.h', 753 'testing/fx_string_testhelpers.h',
754 ], 754 ],
755 }, 755 },
756 ], 756 ],
757 } 757 }
OLDNEW
« core/src/fxcrt/fx_ucddata.cpp ('K') | « core/src/fxcrt/fx_unicode.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698