BUILD 535 B

123456789101112131415161718192021
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. load("@mypy_integration//:mypy.bzl", "mypy_test")
  5. py_binary(
  6. name = "migrate_cpp",
  7. srcs = ["migrate_cpp.py"],
  8. data = [
  9. ":clang_tidy.yaml",
  10. "//migrate_cpp/cpp_refactoring",
  11. ],
  12. python_version = "PY3",
  13. )
  14. mypy_test(
  15. name = "migrate_cpp_mypy_test",
  16. include_imports = True,
  17. deps = [":migrate_cpp"],
  18. )