blob: 08e3b1ddd59f15b6f24e420cc279f69a9439cadf [file] [log] [blame]
load("//bazel:skia_rules.bzl", "skia_cc_library")
package(
default_applicable_licenses = ["//:license"],
)
licenses(["notice"])
skia_cc_library(
name = "debugger",
testonly = True,
srcs = [
"DebugCanvas.cpp",
"DebugLayerManager.cpp",
"DrawCommand.cpp",
"JsonWriteBuffer.cpp",
],
hdrs = [
"DebugCanvas.h",
"DebugLayerManager.h",
"DrawCommand.h",
"JsonWriteBuffer.h",
],
visibility = [
"//dm:__pkg__",
"//modules:__subpackages__",
"//tests:__subpackages__",
],
deps = [
"//:core",
"//src/core:core_priv",
"//src/gpu/ganesh/gl:ganesh_gl_TEST_UTIL",
"//src/utils:multi_picture_document",
"//tools:sk_sharing_proc",
"//tools:url_data_manager",
],
)