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

Unified Diff: public.bzl

Issue 1692513003: Enable RAW codec for Google3. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 4 years, 10 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 8bf328dd4c0480266feb30ebd4f9e82ffa657151..0b2fbae9007ed6f2bfb6d9b1b8f7901cabaa36ae 100644
--- a/public.bzl
+++ b/public.bzl
@@ -130,8 +130,6 @@ 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*",
@@ -181,8 +179,6 @@ 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*",
@@ -484,12 +480,14 @@ DEFINES_UNIX = [
"SK_BUILD_FOR_UNIX",
"SK_SAMPLES_FOR_X",
"SK_SFNTLY_SUBSETTER",
+ "SK_CODEC_DECODES_RAW",
]
DEFINES_ANDROID = [
"SK_BUILD_FOR_ANDROID",
# TODO(benjaminwagner): Try to get png library updated?
"SK_PNG_NO_INDEX_SUPPORTED",
+ "SK_CODEC_DECODES_RAW",
]
DEFINES_IOS = [
« 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