blob: a344b44287109becd37666fe0dd3910b1387d41b [file] [log] [blame]
Lukacs Berkif5e23c62015-03-27 14:08:38 +00001package(default_visibility = ["//visibility:public"])
2
3sh_binary(
4 name = "2to3",
5 srcs = ["2to3.sh"],
6)
Damien Martin-Guillereza8628bf2015-04-17 15:31:02 +00007
8filegroup(
Laszlo Csomorf7549a62018-04-10 02:18:48 -07009 name = "srcs_and_embedded_tools",
Damien Martin-Guillereza8628bf2015-04-17 15:31:02 +000010 srcs = [
11 # Tools are build from the workspace for tests.
12 "2to3.sh",
13 "BUILD",
14 ],
Laszlo Csomorf7549a62018-04-10 02:18:48 -070015 visibility = ["//visibility:private"],
16)
17
18filegroup(
19 name = "srcs",
20 srcs = [
21 ":srcs_and_embedded_tools",
22 "//tools/python/runfiles:srcs",
23 ],
24)
25
26filegroup(
27 name = "embedded_tools",
28 srcs = [
29 ":srcs_and_embedded_tools",
30 "//tools/python/runfiles:embedded_tools",
31 ],
32 visibility = ["//tools:__pkg__"],
Damien Martin-Guillereza8628bf2015-04-17 15:31:02 +000033)
Laszlo Csomordf16c772018-08-09 23:36:39 -070034
35test_suite(
36 name = "all_windows_tests",
37 tests = [
38 "//tools/python/runfiles:all_windows_tests",
39 ],
40 visibility = ["//tools:__pkg__"],
41)