diff options
author | Elliott Hughes <enh@google.com> | 2010-01-22 18:22:53 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2010-01-22 18:28:47 -0800 |
commit | 1698d148fba5718d68de04df1b726940c50fd015 (patch) | |
tree | aaea1c31ef4b6413ce2f0c3ed26e261abf8eb605 /icu/src/main/native/sub.mk | |
parent | 29d8606c7d5f8e1b6957ef4bced99251ec1dffff (diff) | |
download | libcore-1698d148fba5718d68de04df1b726940c50fd015.zip libcore-1698d148fba5718d68de04df1b726940c50fd015.tar.gz libcore-1698d148fba5718d68de04df1b726940c50fd015.tar.bz2 |
Switch our ICU JNI over to C++ and tidy up a little.
The big ugly files (implementing NativeCollation and NativeConverter), I've
just done the minimum necessary for them to compile under a C++ compiler. For
the small ones, I've been through them more thoroughly, removing duplication
and the like.
I only came across one bug; a failure path in BidiWrapper that would have
leaked.
Diffstat (limited to 'icu/src/main/native/sub.mk')
-rw-r--r-- | icu/src/main/native/sub.mk | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/icu/src/main/native/sub.mk b/icu/src/main/native/sub.mk index 2f160f5..fd5f20c 100644 --- a/icu/src/main/native/sub.mk +++ b/icu/src/main/native/sub.mk @@ -3,16 +3,16 @@ # or BUILD_*_LIBRARY. LOCAL_SRC_FILES := \ - BidiWrapperInterface.c \ - BreakIteratorInterface.c \ - DecimalFormatInterface.cpp \ - CharacterInterface.c \ - ConverterInterface.c \ - CollationInterface.c \ - RegExInterface.cpp \ - ResourceInterface.cpp \ - RBNFInterface.cpp \ - ErrorCode.c + BidiWrapper.cpp \ + ErrorCode.cpp \ + NativeBreakIterator.cpp \ + NativeCollation.cpp \ + NativeConverter.cpp \ + NativeDecimalFormat.cpp \ + NativeRegEx.cpp \ + RuleBasedNumberFormat.cpp \ + Resources.cpp \ + UCharacter.cpp LOCAL_C_INCLUDES += \ external/icu4c/common \ |