• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:skia_rules.bzl", "skia_filegroup")
2
3package(
4    default_applicable_licenses = ["//:license"],
5)
6
7licenses(["notice"])
8
9skia_filegroup(
10    name = "srcs",
11    testonly = True,
12    srcs = [
13        "Window_unix.cpp",
14        "Window_unix.h",
15        "keysym2ucs.c",
16        "keysym2ucs.h",
17        "main_unix.cpp",
18    ],
19    visibility = ["//tools/sk_app:__pkg__"],
20)
21