File: BUILD

package info (click to toggle)
cmake-format 0.6.13-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,436 kB
  • sloc: python: 16,990; makefile: 14
file content (30 lines) | stat: -rw-r--r-- 453 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package(default_visibility = ["//visibility:public"])

py_library(
  name = "test",
  srcs = [
    "__init__.py",
    "__main__.py",
    "execution_tests.py",
    "expect_tests.py",
    "genfiles.py",
  ],
)

py_library(
  name = "data",
  data = glob(["*.cmake"]),
)

# -- Python 3 --

py_test(
  name = "lint_test_py3",
  srcs = ["__main__.py"],
  main = "__main__.py",
  python_version = "PY3",
  deps = [
    ":test",
    "//cmakelang/lint",
  ],
)