aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2017-01-06 16:18:02 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-01-06 22:15:03 +0000
commitf8a64b03216d5517ba4cb98d4c8754bcd372caf7 (patch)
tree0ec7ced4718c68a3eeb18ae81f584bacbc71b7c0
parent058e747ee2846dc13099c077236f5d8c5865ee00 (diff)
try harder to exclude SkXbyak.cpp from Google3 build
Change-Id: I26ce450e00b0634deeda61815ef6d501e788c0ae Reviewed-on: https://skia-review.googlesource.com/6700 Reviewed-by: Mike Klein <mtklein@chromium.org> Reviewed-by: Ben Wagner <benjaminwagner@google.com> Commit-Queue: Mike Klein <mtklein@chromium.org>
-rw-r--r--public.bzl9
1 files changed, 6 insertions, 3 deletions
diff --git a/public.bzl b/public.bzl
index 4577ab3d7b..a11bce47e4 100644
--- a/public.bzl
+++ b/public.bzl
@@ -139,9 +139,6 @@ BASE_SRCS_ALL = struct(
# Defines main.
"src/sksl/SkSLMain.cpp",
-
- # Experiment. Google3 doesn't have the library it needs.
- "src/opts/SkXbyak.cpp",
],
)
@@ -174,6 +171,8 @@ BASE_SRCS_UNIX = struct(
"src/opts/SkBitmapProcState_opts_none.cpp",
"src/opts/SkBlitMask_opts_none.cpp",
"src/opts/SkBlitRow_opts_none.cpp",
+ # Experiment. Google3 doesn't have the library it needs.
+ "src/opts/SkXbyak.cpp",
"src/ports/*CG*",
"src/ports/*WIC*",
"src/ports/*android*",
@@ -218,6 +217,8 @@ BASE_SRCS_ANDROID = struct(
"src/opts/*x86*",
"src/opts/SkBlitMask_opts_none.cpp",
"src/opts/SkBlitRow_opts_none.cpp",
+ # Experiment. Google3 doesn't have the library it needs.
+ "src/opts/SkXbyak.cpp",
"src/ports/*CG*",
"src/ports/*FontConfig*",
"src/ports/*WIC*",
@@ -269,6 +270,8 @@ BASE_SRCS_IOS = struct(
"src/opts/*x86*",
"src/opts/SkBlitMask_opts_arm*.cpp",
"src/opts/SkBlitRow_opts_arm*.cpp",
+ # Experiment. Google3 doesn't have the library it needs.
+ "src/opts/SkXbyak.cpp",
"src/ports/*CG*",
"src/ports/*FontConfig*",
"src/ports/*FreeType*",