rules_foreign_cc/examples/BUILD

35 lines
839 B
Python
Raw Normal View History

tests = [
"//examples/cmake:test_libgd",
"//examples/cmake:test_libpng",
"//examples/cmake:test_zlib",
"//examples/cmake_cares:test_c_ares",
"//examples/cmake_hello_world_lib:test_hello",
"//examples/cmake_nghttp2:test_nghttp2",
"//examples/ninja:test_ninja_version",
"//test:cmake_script_test_suite",
"//examples/configure_gnuplot:configure_libgd_tests",
]
tests_with_synthetic = tests + [
"//examples/cmake_synthetic:test_libs",
]
2018-08-13 10:44:53 +00:00
test_suite(
name = "tests",
tests = tests_with_synthetic,
)
test_suite(
name = "tests_no_synthetic",
tests = tests,
)
test_suite(
name = "win_tests",
tags = ["windows"],
tests = tests_with_synthetic + [
2018-09-12 13:41:19 +00:00
"//examples/cmake_hello_world_lib:test_hello_ninja",
"//examples/cmake_hello_world_lib:test_hello_nmake",
],
2018-08-13 10:44:53 +00:00
)