skia2/include/android/BUILD.bazel
Kevin Lubick c3a448ec61 [bazel] Put licenses() after legacy_exports
G3 prefers license() first.

This was done mechanically with a big find/replace

Change-Id: I8c33c7bc10a6bec42e966cad81c259954e841811
Bug: skia:13211
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/535898
Reviewed-by: Ben Wagner <bungeman@google.com>
2022-05-02 15:04:33 +00:00

29 lines
717 B
Python

load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
licenses(["notice"])
exports_files_legacy()
generated_cc_atom(
name = "SkAndroidFrameworkUtils_hdr",
hdrs = ["SkAndroidFrameworkUtils.h"],
visibility = ["//:__subpackages__"],
deps = [
"//include/core:SkRefCnt_hdr",
"//include/core:SkTypes_hdr",
],
)
generated_cc_atom(
name = "SkAnimatedImage_hdr",
hdrs = ["SkAnimatedImage.h"],
visibility = ["//:__subpackages__"],
deps = [
"//include/codec:SkCodecAnimation_hdr",
"//include/core:SkBitmap_hdr",
"//include/core:SkDrawable_hdr",
"//include/core:SkMatrix_hdr",
"//include/core:SkRect_hdr",
],
)