1load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_cc_library") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9exports_files_legacy() 10 11skia_cc_library( 12 name = "simple_vias", 13 testonly = True, 14 srcs = ["SimpleVias.cpp"], 15 hdrs = ["Draw.h"], 16 visibility = ["//gm:__pkg__"], 17 deps = [ 18 "//:png_decode_codec", 19 "//:png_encode_codec", 20 "//gm", 21 ], 22) 23