96e4053be7
- Use latest emscripten toolchain (3.1.0) - Autogenerate the atoms and manually fix some of the file lists. - Add a known_good_builds target to bazel/Makefile to help check the things we expect to work with Bazel. Change-Id: Ia5f51e7b9eb5c108386820ad59180c8f862f5a70 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/491438 Reviewed-by: Ben Wagner <bungeman@google.com>
23 lines
548 B
Python
23 lines
548 B
Python
load("//bazel:macros.bzl", "generated_cc_atom")
|
|
|
|
generated_cc_atom(
|
|
name = "GrSlug_hdr",
|
|
hdrs = ["GrSlug.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//include/core:SkRect_hdr",
|
|
"//include/core:SkRefCnt_hdr",
|
|
],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "SkChromeRemoteGlyphCache_hdr",
|
|
hdrs = ["SkChromeRemoteGlyphCache.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//include/core:SkData_hdr",
|
|
"//include/core:SkRefCnt_hdr",
|
|
"//include/utils:SkNoDrawCanvas_hdr",
|
|
],
|
|
)
|