Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(415)

Unified Diff: BUILD.public

Issue 1298003007: Update BUILD.public a bit. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/BUILD.public.expected » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.public
diff --git a/BUILD.public b/BUILD.public
index ed54aba787d5d17ec82cbed82fc39eaea63b5ace..8409445d5fab50d239f76b2047ab103d28eb1087 100644
--- a/BUILD.public
+++ b/BUILD.public
@@ -8,6 +8,7 @@ exports_files(["BUILD.public"])
# Platform-independent SRCS
SRCS = glob(
[
+ "include/private/*.h",
"google/*.cpp",
"src/c/*.cpp",
"src/core/*.cpp",
@@ -31,6 +32,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 +51,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 +61,25 @@ 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.
+ ],
+)
+
+SRCS_SSSE3 = glob(
+ [
+ "src/opts/*SSSE3*.cpp",
+ "src/opts/*ssse3*.cpp",
+ ],
+)
+
+SRCS_SSE4 = glob(
+ [
+ "src/opts/*SSE4*.cpp",
+ "src/opts/*sse4*.cpp",
],
)
@@ -70,11 +87,14 @@ HDRS = glob(
[
"include/**/*.h",
],
+ exclude = [
+ "include/animator/*.h",
+ "include/private/*.h",
+ ],
)
# Includes needed by Skia implementation. Not public includes.
INCLUDES = [
- "include/animator",
"include/c",
"include/codec",
"include/config",
« no previous file with comments | « no previous file | tools/BUILD.public.expected » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698