restore headers lost from skia.h
When we updated the script that generates skia.h to look at GN dependencies, we lost some headers. Here are two that we have noticed are missing. ~/skia (headers|✚2…) $ git diff --no-index before.h out/gen/skia.h diff --git a/before.h b/out/gen/skia.h index 1d59746af1..915fffb293 100644 --- a/before.h +++ b/out/gen/skia.h @@ -38,6 +38,7 @@ #include "SkColorMatrix.h" #include "SkColorMatrixFilter.h" #include "SkColorPriv.h" +#include "SkColorSpaceXform.h" #include "SkCornerPathEffect.h" #include "SkDashPathEffect.h" #include "SkData.h" @@ -65,6 +66,7 @@ #include "SkImageInfo.h" #include "SkImageSource.h" #include "SkInterpolator.h" +#include "SkJpegEncoder.h" #include "SkLayerDrawLooper.h" #include "SkLightingImageFilter.h" #include "SkLumaColorFilter.h" Bug: skia:8039 Change-Id: If59a421a7852dc19123b851798b194a4666c59a3 Reviewed-on: https://skia-review.googlesource.com/132262 Auto-Submit: Mike Klein <mtklein@chromium.org> Commit-Queue: Ben Wagner <bungeman@google.com> Reviewed-by: Ben Wagner <bungeman@google.com>
This commit is contained in:
parent
cdaf661408
commit
f105dc71e4
3
BUILD.gn
3
BUILD.gn
@ -655,6 +655,9 @@ optional("jpeg") {
|
||||
deps = [
|
||||
"//third_party/libjpeg-turbo:libjpeg",
|
||||
]
|
||||
public = [
|
||||
"include/encode/SkJpegEncoder.h",
|
||||
]
|
||||
sources = [
|
||||
"src/codec/SkJpegCodec.cpp",
|
||||
"src/codec/SkJpegDecoderMgr.cpp",
|
||||
|
@ -386,6 +386,7 @@ skia_core_sources = [
|
||||
"$_include/core/SkColor.h",
|
||||
"$_include/core/SkColorFilter.h",
|
||||
"$_include/core/SkColorPriv.h",
|
||||
"$_include/core/SkColorSpaceXform.h",
|
||||
"$_include/core/SkData.h",
|
||||
"$_include/core/SkDeferredDisplayListRecorder.h",
|
||||
"$_include/core/SkDeque.h",
|
||||
|
Loading…
Reference in New Issue
Block a user