└── infra_macros ├── BUCK ├── DEFS.bzl ├── macro_lib ├── BUCK ├── __init__.py ├── constants.bzl ├── convert │ └── haskell │ │ ├── ghci_iserv_script_template │ │ ├── ghci_script_template │ │ └── ide_script_template ├── cxx_sources.py ├── rule.py └── target.py ├── macro_lib_tests ├── BUCK └── test_manifest.py └── macros.bzl /infra_macros/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/BUCK -------------------------------------------------------------------------------- /infra_macros/DEFS.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/DEFS.bzl -------------------------------------------------------------------------------- /infra_macros/macro_lib/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/macro_lib/BUCK -------------------------------------------------------------------------------- /infra_macros/macro_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra_macros/macro_lib/constants.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/macro_lib/constants.bzl -------------------------------------------------------------------------------- /infra_macros/macro_lib/convert/haskell/ghci_iserv_script_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/macro_lib/convert/haskell/ghci_iserv_script_template -------------------------------------------------------------------------------- /infra_macros/macro_lib/convert/haskell/ghci_script_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/macro_lib/convert/haskell/ghci_script_template -------------------------------------------------------------------------------- /infra_macros/macro_lib/convert/haskell/ide_script_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/macro_lib/convert/haskell/ide_script_template -------------------------------------------------------------------------------- /infra_macros/macro_lib/cxx_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/macro_lib/cxx_sources.py -------------------------------------------------------------------------------- /infra_macros/macro_lib/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/macro_lib/rule.py -------------------------------------------------------------------------------- /infra_macros/macro_lib/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/macro_lib/target.py -------------------------------------------------------------------------------- /infra_macros/macro_lib_tests/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/macro_lib_tests/BUCK -------------------------------------------------------------------------------- /infra_macros/macro_lib_tests/test_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/macro_lib_tests/test_manifest.py -------------------------------------------------------------------------------- /infra_macros/macros.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/buckit/HEAD/infra_macros/macros.bzl --------------------------------------------------------------------------------