Remove RAW Codec from Google3 build.

This should fix the build after https://codereview.chromium.org/1520403003 and allow the autoroller to complete. I will follow up to see if it will be simple to re-enable this codec.
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1628393002

Review URL: https://codereview.chromium.org/1628393002
This commit is contained in:
benjaminwagner 2016-01-25 09:29:08 -08:00 committed by Commit bot
parent 20473344b2
commit 89061ed2e7

View File

@ -128,6 +128,8 @@ BASE_SRCS_UNIX = struct(
],
exclude = [
"src/codec/SkJpegCodec.cpp", # libjpeg_turbo version mismatch.
# TODO(benjaminwagner): Can this be enabled?
"src/codec/SkRaw*",
"src/opts/*arm*",
"src/opts/*mips*",
"src/opts/*NEON*",
@ -176,6 +178,8 @@ BASE_SRCS_ANDROID = struct(
],
exclude = [
"src/codec/SkJpegCodec.cpp", # libjpeg_turbo version mismatch.
# TODO(benjaminwagner): Can this be enabled?
"src/codec/SkRaw*",
"src/opts/*mips*",
"src/opts/*SSE2*",
"src/opts/*SSSE3*",
@ -261,23 +265,27 @@ SSSE3_SRCS = struct(
include = [
"src/opts/*SSSE3*.cpp",
"src/opts/*ssse3*.cpp",
])
],
)
SSE4_SRCS = struct(
include = [
"src/opts/*SSE4*.cpp",
"src/opts/*sse4*.cpp",
])
],
)
AVX_SRCS = struct(
include = [
"src/opts/*_avx.cpp",
])
],
)
AVX2_SRCS = struct(
include = [
"src/opts/*_avx2.cpp",
])
],
)
################################################################################
## BASE_HDRS
@ -295,7 +303,8 @@ BASE_HDRS = struct(
"include/views/**/*",
"include/xml/SkBML_WXMLParser.h",
"include/xml/SkBML_XMLParser.h",
])
],
)
################################################################################
## BASE_DEPS
@ -503,4 +512,3 @@ LINKOPTS_IOS = []
LINKOPTS_ALL = [
"-ldl",
]