5e8f45faf1
This updates all our callsites in preparation for removing the #include "include/core/SkColorSpace.h" from SkImageInfo.h According to go/chrome-includes [1], this will save ~150MB (0.07%) from the compilation size. I think SkColorSpace is a big include because it loads the skcms header, which is big. The follow-on CL will remove that link, once clients have been updated as well. [1] https://commondatastorage.googleapis.com/chromium-browser-clang/chrome_includes_2022-03-31_124042.html#view=edges&filter=%5Ethird_party%2Fskia%2Finclude%2Fcore%2FSkImageInfo%5C.h%24&sort=asize&reverse=&includer=%5Ethird_party%2Fskia%2Finclude%2Fcore%2FSkImageInfo%5C.h%24&included=&limit=1000 Change-Id: I1b5ff491ac495317b0e5af3a2082b080d43697ae Bug: skia:13052 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/525639 Reviewed-by: Robert Phillips <robertphillips@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com> Reviewed-by: Florin Malita <fmalita@google.com> Commit-Queue: Kevin Lubick <kjlubick@google.com>
65 lines
1.6 KiB
Python
65 lines
1.6 KiB
Python
load("//bazel:macros.bzl", "generated_cc_atom")
|
|
|
|
generated_cc_atom(
|
|
name = "Request_hdr",
|
|
hdrs = ["Request.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//include/core:SkPicture_hdr",
|
|
"//include/core:SkStream_hdr",
|
|
"//include/core:SkSurface_hdr",
|
|
"//include/core:SkTypes_hdr",
|
|
"//tools:UrlDataManager_hdr",
|
|
"//tools/debugger:DebugCanvas_hdr",
|
|
"//tools/gpu:GrContextFactory_hdr",
|
|
],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "Request_src",
|
|
srcs = ["Request.cpp"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
":Request_hdr",
|
|
"//include/core:SkBitmap_hdr",
|
|
"//include/core:SkColorSpace_hdr",
|
|
"//include/core:SkPictureRecorder_hdr",
|
|
"//include/gpu:GrDirectContext_hdr",
|
|
"//src/utils:SkJSONWriter_hdr",
|
|
"//tools:ToolUtils_hdr",
|
|
"//tools/debugger:DrawCommand_hdr",
|
|
],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "Response_hdr",
|
|
hdrs = ["Response.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "Response_src",
|
|
srcs = ["Response.cpp"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
":Request_hdr",
|
|
":Response_hdr",
|
|
"//include/core:SkData_hdr",
|
|
"//include/core:SkString_hdr",
|
|
"//tools/flags:CommandLineFlags_hdr",
|
|
],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "skiaserve_src",
|
|
srcs = ["skiaserve.cpp"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
":Request_hdr",
|
|
":Response_hdr",
|
|
"//include/core:SkGraphics_hdr",
|
|
"//tools/flags:CommandLineFlags_hdr",
|
|
"//tools/skiaserve/urlhandlers:UrlHandler_hdr",
|
|
],
|
|
)
|