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

Unified Diff: public.bzl

Issue 1628393002: Remove RAW Codec from Google3 build. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 4 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public.bzl
diff --git a/public.bzl b/public.bzl
index 33ba89b6fbe510b4eaa69ab3e0eace6928c9f8e5..2af3a0f8fdb23806ba2c9f850520a14317fdc752 100644
--- a/public.bzl
+++ b/public.bzl
@@ -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",
]
-
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698