diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
commit | fdb2704414a9ed92394ada0d1395e4db86889465 (patch) | |
tree | 9b591a4a50054274a197f02b3ccb51313681879f /icu/src/main/native/sub.mk | |
download | libcore-fdb2704414a9ed92394ada0d1395e4db86889465.zip libcore-fdb2704414a9ed92394ada0d1395e4db86889465.tar.gz libcore-fdb2704414a9ed92394ada0d1395e4db86889465.tar.bz2 |
Initial Contribution
Diffstat (limited to 'icu/src/main/native/sub.mk')
-rw-r--r-- | icu/src/main/native/sub.mk | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/icu/src/main/native/sub.mk b/icu/src/main/native/sub.mk new file mode 100644 index 0000000..2f160f5 --- /dev/null +++ b/icu/src/main/native/sub.mk @@ -0,0 +1,30 @@ +# This file is included by the top-level libcore Android.mk. +# It's not a normal makefile, so we don't include CLEAR_VARS +# 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 + +LOCAL_C_INCLUDES += \ + external/icu4c/common \ + external/icu4c/i18n + +# Any shared/static libs that are listed here must also +# be listed in libs/nativehelper/Android.mk. +# TODO: fix this requirement + +LOCAL_SHARED_LIBRARIES += \ + libicudata \ + libicuuc \ + libicui18n + +LOCAL_STATIC_LIBRARIES += |