skia2/modules/skottie/fuzz/BUILD.bazel
Kevin Lubick b98328a27b [bazel] Add license to all our BUILD.bazel files
find -name "BUILD.bazel" -exec sed -i -e '1i licenses(["notice"])\n' {} +

Change-Id: Ie48f163b7d8d6ede9ba5f952e87232dd5c9fa8e6
Bug: skia:12541
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/529808
Reviewed-by: Ben Wagner <bungeman@google.com>
2022-04-13 19:50:29 +00:00

17 lines
429 B
Python

licenses(["notice"])
load("//bazel:macros.bzl", "generated_cc_atom")
generated_cc_atom(
name = "FuzzSkottieJSON_src",
srcs = ["FuzzSkottieJSON.cpp"],
visibility = ["//:__subpackages__"],
deps = [
"//include/core:SkData_hdr",
"//include/core:SkStream_hdr",
"//modules/skottie/include:Skottie_hdr",
"//src/core:SkFontMgrPriv_hdr",
"//tools/fonts:TestFontMgr_hdr",
],
)