diff options
author | initial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-27 00:09:42 +0000 |
---|---|---|
committer | initial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-27 00:09:42 +0000 |
commit | ae2c20f398933a9e86c387dcc465ec0f71065ffc (patch) | |
tree | de668b1411e2ee0b4e49b6d8f8b68183134ac990 /skia/corecg/Makefile | |
parent | 09911bf300f1a419907a9412154760efd0b7abc3 (diff) | |
download | chromium_src-ae2c20f398933a9e86c387dcc465ec0f71065ffc.zip chromium_src-ae2c20f398933a9e86c387dcc465ec0f71065ffc.tar.gz chromium_src-ae2c20f398933a9e86c387dcc465ec0f71065ffc.tar.bz2 |
Add skia to the repository.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/corecg/Makefile')
-rw-r--r-- | skia/corecg/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/skia/corecg/Makefile b/skia/corecg/Makefile new file mode 100644 index 0000000..72f2f2a --- /dev/null +++ b/skia/corecg/Makefile @@ -0,0 +1,40 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_ARM_MODE := arm + +LOCAL_SRC_FILES:= \ + Sk64.cpp \ + SkBuffer.cpp \ + SkChunkAlloc.cpp \ + SkCordic.cpp \ + SkDebug.cpp \ + SkDebug_stdio.cpp \ + SkFloat.cpp \ + SkInterpolator.cpp \ + SkMath.cpp \ + SkMatrix.cpp \ + SkMemory_stdlib.cpp \ + SkPoint.cpp \ + SkRect.cpp \ + SkRegion.cpp + +LOCAL_SHARED_LIBRARIES := \ + libcutils \ + libutils + +LOCAL_C_INCLUDES += \ + include/corecg + +#LOCAL_CFLAGS+= +#LOCAL_LDFLAGS:= + +LOCAL_MODULE:= libcorecg + +LOCAL_CFLAGS += -fstrict-aliasing + +ifeq ($(TARGET_ARCH),arm) + LOCAL_CFLAGS += -fomit-frame-pointer +endif + +include $(BUILD_SHARED_LIBRARY) |