add opts files to the make
authorreed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 30 Jul 2009 02:25:54 +0000 (02:25 +0000)
committerreed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Thu, 30 Jul 2009 02:25:54 +0000 (02:25 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@296 2bbb7eff-a529-9590-31e7-b0007b416f81

Makefile
src/opts/opts_files.mk [new file with mode: 0644]

index 26a1580..c2a0976 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -26,6 +26,10 @@ DEFINES += -DSK_SUPPORT_LCDTEXT
 include src/core/core_files.mk
 SRC_LIST := $(addprefix src/core/, $(SOURCE))
 
+# add the opts (optimizations)
+include src/opts/opts_files.mk
+SRC_LIST += $(addprefix src/opts/, $(SOURCE))
+
 # we usually need ports
 include src/ports/ports_files.mk
 SRC_LIST += $(addprefix src/ports/, $(SOURCE))
diff --git a/src/opts/opts_files.mk b/src/opts/opts_files.mk
new file mode 100644 (file)
index 0000000..d751e56
--- /dev/null
@@ -0,0 +1,3 @@
+SOURCE := \
+    SkBlitRow_opts_none.cpp
+