1load("//bazel:skia_rules.bzl", "skia_cc_library") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9skia_cc_library( 10 name = "debugger", 11 srcs = [ 12 "DebugCanvas.cpp", 13 "DebugLayerManager.cpp", 14 "DrawCommand.cpp", 15 "JsonWriteBuffer.cpp", 16 ], 17 hdrs = [ 18 "DebugCanvas.h", 19 "DebugLayerManager.h", 20 "DrawCommand.h", 21 "JsonWriteBuffer.h", 22 ], 23 visibility = [ 24 "//dm:__pkg__", 25 "//modules:__subpackages__", 26 "//tests:__subpackages__", 27 ], 28 deps = [ 29 "//:core", 30 "//src/core:core_priv", 31 "//src/utils:multi_picture_document", 32 "//tools:sk_sharing_proc", 33 "//tools:url_data_manager", 34 ], 35) 36