Index: BUILD.public |
diff --git a/BUILD.public b/BUILD.public |
index f69e9b63c1fa9b11d3447c8f81ccf2b863e20ba5..caa32f8ae677b120365a90327e93df39c2a48d28 100644 |
--- a/BUILD.public |
+++ b/BUILD.public |
@@ -31,6 +31,7 @@ SRCS = glob( |
"src/gpu/gl/glx/*.cpp", |
"src/opts/opts_check_x86.cpp", |
"src/opts/*SSE2*.cpp", |
+ "src/opts/*sse2*.cpp", |
"src/opts/SkTextureCompression_opts_none.cpp", |
# TODO(mtklein): might be more maintainable with a blacklist instead? |
@@ -49,7 +50,7 @@ SRCS = glob( |
"src/ports/SkTLS_pthread.cpp", |
"src/ports/SkTime_Unix.cpp", |
- # Third Party |
+ # Third Party |
"third_party/etc1/*.cpp", |
"third_party/ktx/*.cpp", |
], |
@@ -59,10 +60,11 @@ SRCS = glob( |
"src/gpu/gl/GrGLCreateNativeInterface_none.cpp", |
# TODO(mtklein): files below here probably want upstream fixes |
"src/utils/SkThreadUtils_pthread_mach.cpp", # Mac-only. Move to ports? |
- # Non-Mac-non-Linux. Move to ports? |
+ # Non-Mac-non-Linux. Move to ports? |
"src/utils/SkThreadUtils_pthread_other.cpp", |
"src/utils/SkThreadUtils_win.cpp", # Windows-only. Move to ports? |
- "src/doc/*_XPS.cpp", |
+ "src/doc/*_XPS.cpp", # Windows-only. |
+ "src/doc/SkDocument_PDF_None.cpp", # We use SkDocument_PDF.cpp. |
# TODO(melanielc): These don't compile. Maybe remove them? |
"src/pathops/SkConicLineIntersection.cpp", |
@@ -70,15 +72,32 @@ SRCS = glob( |
], |
) |
+SRCS_SSSE3 = glob( |
+ [ |
+ "src/opts/*SSSE3*.cpp", |
+ "src/opts/*ssse3*.cpp", |
+ ] |
+) |
+ |
+SRCS_SSE4 = glob( |
+ [ |
+ "src/opts/*SSE4*.cpp", |
+ "src/opts/*sse4*.cpp", |
+ ] |
+) |
+ |
HDRS = glob( |
[ |
"include/**/*.h", |
], |
+ exclude = [ |
+ "include/animator/*.h", |
+ "include/private/*.h", |
dogben
2015/08/18 13:17:52
Do these need to be in SRCS?
|
+ ], |
) |
# Includes needed by Skia implementation. Not public includes. |
INCLUDES = [ |
- "include/animator", |
"include/c", |
"include/codec", |
"include/config", |