summaryrefslogtreecommitdiff
path: root/pdfium.gyp
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-08-17 18:00:48 -0700
committerLei Zhang <thestig@chromium.org>2015-08-17 18:00:48 -0700
commit2ae87d2e8ddff79d0e96aad3db97e090db21fb99 (patch)
tree9bbae4e8d6b554a4b4b12fe0cfc5a8a5b54e43b7 /pdfium.gyp
parent1d9dbd53b205b2b4d9e75a7eeb95e80837917ea3 (diff)
downloadpdfium-2ae87d2e8ddff79d0e96aad3db97e090db21fb99.tar.xz
Clean up IFX_BidiChar
- Replace IFX_BidiChar with just CFX_BidiChar - Document implementation - Change out parameters to pointers - Remove dead code - Add an enum for bidi directions - Move several externs to a header - Add unit tests R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1197643002 .
Diffstat (limited to 'pdfium.gyp')
-rw-r--r--pdfium.gyp6
1 files changed, 3 insertions, 3 deletions
diff --git a/pdfium.gyp b/pdfium.gyp
index d7f00bc8b4..6e48c34435 100644
--- a/pdfium.gyp
+++ b/pdfium.gyp
@@ -392,8 +392,8 @@
'type': 'static_library',
'ldflags': [ '-L<(PRODUCT_DIR)',],
'sources': [
- 'core/include/fxcrt/fx_arb.h',
'core/include/fxcrt/fx_basic.h',
+ 'core/include/fxcrt/fx_bidi.h',
'core/include/fxcrt/fx_coordinates.h',
'core/include/fxcrt/fx_ext.h',
'core/include/fxcrt/fx_memory.h',
@@ -410,8 +410,6 @@
'core/src/fxcrt/fxcrt_posix.h',
'core/src/fxcrt/fxcrt_windows.cpp',
'core/src/fxcrt/fxcrt_windows.h',
- 'core/src/fxcrt/fx_arabic.cpp',
- 'core/src/fxcrt/fx_arabic.h',
'core/src/fxcrt/fx_basic_array.cpp',
'core/src/fxcrt/fx_basic_bstring.cpp',
'core/src/fxcrt/fx_basic_buffer.cpp',
@@ -424,6 +422,7 @@
'core/src/fxcrt/fx_basic_utf.cpp',
'core/src/fxcrt/fx_basic_util.cpp',
'core/src/fxcrt/fx_basic_wstring.cpp',
+ 'core/src/fxcrt/fx_bidi.cpp',
'core/src/fxcrt/fx_extension.cpp',
'core/src/fxcrt/fx_ucddata.cpp',
'core/src/fxcrt/fx_unicode.cpp',
@@ -723,6 +722,7 @@
'core/src/fxcrt/fx_basic_bstring_unittest.cpp',
'core/src/fxcrt/fx_basic_memmgr_unittest.cpp',
'core/src/fxcrt/fx_basic_wstring_unittest.cpp',
+ 'core/src/fxcrt/fx_bidi_unittest.cpp',
'core/src/fxcrt/fx_system_unittest.cpp',
'testing/fx_string_testhelpers.h',
'testing/fx_string_testhelpers.cpp',