├── .bazelrc ├── .ci └── subpar.json ├── .flake8 ├── .gitignore ├── .travis.yml ├── BUILD ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── WORKSPACE ├── __init__.py ├── compiler ├── BUILD ├── __init__.py ├── cli.py ├── cli_test.py ├── compiler.py ├── error.py ├── manifest_parser.py ├── manifest_parser_test.py ├── python_archive.py ├── python_archive_test.py ├── stored_resource.py ├── stored_resource_test.py └── test_utils.py ├── debug.bzl ├── docs ├── BUILD ├── WORKSPACE ├── debug.html ├── debug.md ├── index.html ├── index.md ├── main.css ├── subpar.html └── subpar.md ├── nox.py ├── run_tests.sh ├── runtime ├── BUILD ├── __init__.py ├── support.py └── support_test.py ├── scripts ├── docker │ └── Dockerfile └── run_tests_in_docker.sh ├── subpar.bzl ├── test_dir_shadowing ├── BUILD ├── test_dir_shadowing │ ├── __init__.py │ ├── dir_shadowing_lib.py │ ├── dir_shadowing_lib_dat.txt │ ├── dir_shadowing_main.py │ └── dir_shadowing_main_dat.txt ├── test_dir_shadowing_main_PY2_filelist.txt └── test_dir_shadowing_main_PY3_filelist.txt ├── tests ├── BUILD ├── __init__.py ├── package_a │ ├── BUILD │ ├── __init__.py │ ├── a.py │ ├── a_PY2_filelist.txt │ ├── a_PY3_filelist.txt │ ├── a_dat.txt │ ├── a_lib.py │ └── a_lib_dat.txt ├── package_b │ ├── BUILD │ ├── __init__.py │ ├── b.py │ ├── b_PY2_filelist.txt │ ├── b_PY3_filelist.txt │ └── b_dat.txt ├── package_boilerplate │ ├── main.py │ ├── main_PY2_filelist.txt │ └── main_PY3_filelist.txt ├── package_c │ ├── __init__.py │ ├── c.py │ ├── c_PY2_filelist.txt │ └── c_PY3_filelist.txt ├── package_d │ ├── __init__.py │ ├── d.py │ ├── d_PY2_filelist.txt │ └── d_PY3_filelist.txt ├── package_e │ ├── __init__.py │ ├── e.py │ ├── e_PY2_filelist.txt │ └── e_PY3_filelist.txt ├── package_extract │ ├── extract.py │ ├── extract_PY2_filelist.txt │ ├── extract_PY3_filelist.txt │ ├── extract_helper.py │ └── extract_helper_package │ │ ├── __init__.py │ │ └── extract_dat.txt ├── package_f │ ├── f_PY2.py │ ├── f_PY2_filelist.txt │ ├── f_PY3.py │ └── f_PY3_filelist.txt ├── package_import_roots │ ├── import_roots.py │ ├── import_roots_PY2_filelist.txt │ └── import_roots_PY3_filelist.txt ├── package_pkg_resources │ ├── main.py │ ├── main_PY2_filelist.txt │ └── main_PY3_filelist.txt ├── package_shadow │ ├── code │ │ ├── __init__.py │ │ └── shadowed.py │ ├── main.py │ ├── main_PY2_filelist.txt │ └── main_PY3_filelist.txt ├── requirements-test-centos7.txt ├── requirements-test-latest.txt ├── requirements-test.txt ├── test_compiler_label_wrapper.sh ├── test_harness.sh └── test_workspace │ ├── BUILD │ ├── WORKSPACE │ ├── data_file.txt │ ├── package_external_lib │ └── external_lib.py │ └── test_compiler_label.py ├── third_party ├── README.md ├── pypi__portpicker_1_2_0 │ ├── BUILD │ ├── WORKSPACE │ ├── data_file.txt │ ├── portpicker-1.2.0.dist-info │ │ ├── METADATA │ │ └── metadata.json │ └── portpicker.py └── pypi__yapf_0_19_0 │ ├── BUILD │ ├── WORKSPACE │ ├── data_file.txt │ ├── yapf-0.19.0.dist-info │ ├── METADATA │ └── metadata.json │ └── yapf │ └── __init__.py ├── toolchain_test_hook.bzl └── update_docs.sh /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/.bazelrc -------------------------------------------------------------------------------- /.ci/subpar.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"node": "linux-x86_64"} 3 | ] 4 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/BUILD -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @brandjon 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/WORKSPACE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/compiler/BUILD -------------------------------------------------------------------------------- /compiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/compiler/cli.py -------------------------------------------------------------------------------- /compiler/cli_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/compiler/cli_test.py -------------------------------------------------------------------------------- /compiler/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/compiler/compiler.py -------------------------------------------------------------------------------- /compiler/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/compiler/error.py -------------------------------------------------------------------------------- /compiler/manifest_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/compiler/manifest_parser.py -------------------------------------------------------------------------------- /compiler/manifest_parser_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/compiler/manifest_parser_test.py -------------------------------------------------------------------------------- /compiler/python_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/compiler/python_archive.py -------------------------------------------------------------------------------- /compiler/python_archive_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/compiler/python_archive_test.py -------------------------------------------------------------------------------- /compiler/stored_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/compiler/stored_resource.py -------------------------------------------------------------------------------- /compiler/stored_resource_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/compiler/stored_resource_test.py -------------------------------------------------------------------------------- /compiler/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/compiler/test_utils.py -------------------------------------------------------------------------------- /debug.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/debug.bzl -------------------------------------------------------------------------------- /docs/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/docs/BUILD -------------------------------------------------------------------------------- /docs/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/docs/WORKSPACE -------------------------------------------------------------------------------- /docs/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/docs/debug.html -------------------------------------------------------------------------------- /docs/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/docs/debug.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/docs/main.css -------------------------------------------------------------------------------- /docs/subpar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/docs/subpar.html -------------------------------------------------------------------------------- /docs/subpar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/docs/subpar.md -------------------------------------------------------------------------------- /nox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/nox.py -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/run_tests.sh -------------------------------------------------------------------------------- /runtime/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/runtime/BUILD -------------------------------------------------------------------------------- /runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/runtime/support.py -------------------------------------------------------------------------------- /runtime/support_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/runtime/support_test.py -------------------------------------------------------------------------------- /scripts/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/scripts/docker/Dockerfile -------------------------------------------------------------------------------- /scripts/run_tests_in_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/scripts/run_tests_in_docker.sh -------------------------------------------------------------------------------- /subpar.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/subpar.bzl -------------------------------------------------------------------------------- /test_dir_shadowing/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/test_dir_shadowing/BUILD -------------------------------------------------------------------------------- /test_dir_shadowing/test_dir_shadowing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_dir_shadowing/test_dir_shadowing/dir_shadowing_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/test_dir_shadowing/test_dir_shadowing/dir_shadowing_lib.py -------------------------------------------------------------------------------- /test_dir_shadowing/test_dir_shadowing/dir_shadowing_lib_dat.txt: -------------------------------------------------------------------------------- 1 | Dummy data file for dir_shadowing_lib.py 2 | -------------------------------------------------------------------------------- /test_dir_shadowing/test_dir_shadowing/dir_shadowing_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/test_dir_shadowing/test_dir_shadowing/dir_shadowing_main.py -------------------------------------------------------------------------------- /test_dir_shadowing/test_dir_shadowing/dir_shadowing_main_dat.txt: -------------------------------------------------------------------------------- 1 | Dummy data file for dir_shadowing_main.py 2 | -------------------------------------------------------------------------------- /test_dir_shadowing/test_dir_shadowing_main_PY2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/test_dir_shadowing/test_dir_shadowing_main_PY2_filelist.txt -------------------------------------------------------------------------------- /test_dir_shadowing/test_dir_shadowing_main_PY3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/test_dir_shadowing/test_dir_shadowing_main_PY3_filelist.txt -------------------------------------------------------------------------------- /tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/BUILD -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/package_a/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_a/BUILD -------------------------------------------------------------------------------- /tests/package_a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/package_a/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_a/a.py -------------------------------------------------------------------------------- /tests/package_a/a_PY2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_a/a_PY2_filelist.txt -------------------------------------------------------------------------------- /tests/package_a/a_PY3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_a/a_PY3_filelist.txt -------------------------------------------------------------------------------- /tests/package_a/a_dat.txt: -------------------------------------------------------------------------------- 1 | Dummy data file for a.py 2 | -------------------------------------------------------------------------------- /tests/package_a/a_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_a/a_lib.py -------------------------------------------------------------------------------- /tests/package_a/a_lib_dat.txt: -------------------------------------------------------------------------------- 1 | Dummy data file for a_lib.py 2 | -------------------------------------------------------------------------------- /tests/package_b/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_b/BUILD -------------------------------------------------------------------------------- /tests/package_b/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/package_b/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_b/b.py -------------------------------------------------------------------------------- /tests/package_b/b_PY2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_b/b_PY2_filelist.txt -------------------------------------------------------------------------------- /tests/package_b/b_PY3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_b/b_PY3_filelist.txt -------------------------------------------------------------------------------- /tests/package_b/b_dat.txt: -------------------------------------------------------------------------------- 1 | Dummy data file for b.py 2 | -------------------------------------------------------------------------------- /tests/package_boilerplate/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_boilerplate/main.py -------------------------------------------------------------------------------- /tests/package_boilerplate/main_PY2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_boilerplate/main_PY2_filelist.txt -------------------------------------------------------------------------------- /tests/package_boilerplate/main_PY3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_boilerplate/main_PY3_filelist.txt -------------------------------------------------------------------------------- /tests/package_c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/package_c/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_c/c.py -------------------------------------------------------------------------------- /tests/package_c/c_PY2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_c/c_PY2_filelist.txt -------------------------------------------------------------------------------- /tests/package_c/c_PY3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_c/c_PY3_filelist.txt -------------------------------------------------------------------------------- /tests/package_d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/package_d/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_d/d.py -------------------------------------------------------------------------------- /tests/package_d/d_PY2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_d/d_PY2_filelist.txt -------------------------------------------------------------------------------- /tests/package_d/d_PY3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_d/d_PY3_filelist.txt -------------------------------------------------------------------------------- /tests/package_e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/package_e/e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_e/e.py -------------------------------------------------------------------------------- /tests/package_e/e_PY2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_e/e_PY2_filelist.txt -------------------------------------------------------------------------------- /tests/package_e/e_PY3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_e/e_PY3_filelist.txt -------------------------------------------------------------------------------- /tests/package_extract/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_extract/extract.py -------------------------------------------------------------------------------- /tests/package_extract/extract_PY2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_extract/extract_PY2_filelist.txt -------------------------------------------------------------------------------- /tests/package_extract/extract_PY3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_extract/extract_PY3_filelist.txt -------------------------------------------------------------------------------- /tests/package_extract/extract_helper.py: -------------------------------------------------------------------------------- 1 | pass 2 | -------------------------------------------------------------------------------- /tests/package_extract/extract_helper_package/__init__.py: -------------------------------------------------------------------------------- 1 | pass 2 | -------------------------------------------------------------------------------- /tests/package_extract/extract_helper_package/extract_dat.txt: -------------------------------------------------------------------------------- 1 | Dummy data file for extract.py 2 | -------------------------------------------------------------------------------- /tests/package_f/f_PY2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_f/f_PY2.py -------------------------------------------------------------------------------- /tests/package_f/f_PY2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_f/f_PY2_filelist.txt -------------------------------------------------------------------------------- /tests/package_f/f_PY3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_f/f_PY3.py -------------------------------------------------------------------------------- /tests/package_f/f_PY3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_f/f_PY3_filelist.txt -------------------------------------------------------------------------------- /tests/package_import_roots/import_roots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_import_roots/import_roots.py -------------------------------------------------------------------------------- /tests/package_import_roots/import_roots_PY2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_import_roots/import_roots_PY2_filelist.txt -------------------------------------------------------------------------------- /tests/package_import_roots/import_roots_PY3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_import_roots/import_roots_PY3_filelist.txt -------------------------------------------------------------------------------- /tests/package_pkg_resources/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_pkg_resources/main.py -------------------------------------------------------------------------------- /tests/package_pkg_resources/main_PY2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_pkg_resources/main_PY2_filelist.txt -------------------------------------------------------------------------------- /tests/package_pkg_resources/main_PY3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_pkg_resources/main_PY3_filelist.txt -------------------------------------------------------------------------------- /tests/package_shadow/code/__init__.py: -------------------------------------------------------------------------------- 1 | # This package name shadows the builtin 'code' module 2 | -------------------------------------------------------------------------------- /tests/package_shadow/code/shadowed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_shadow/code/shadowed.py -------------------------------------------------------------------------------- /tests/package_shadow/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_shadow/main.py -------------------------------------------------------------------------------- /tests/package_shadow/main_PY2_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_shadow/main_PY2_filelist.txt -------------------------------------------------------------------------------- /tests/package_shadow/main_PY3_filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/package_shadow/main_PY3_filelist.txt -------------------------------------------------------------------------------- /tests/requirements-test-centos7.txt: -------------------------------------------------------------------------------- 1 | # CentOS 7 2 | setuptools==0.9.8 3 | -------------------------------------------------------------------------------- /tests/requirements-test-latest.txt: -------------------------------------------------------------------------------- 1 | pip 2 | setuptools 3 | wheel 4 | -------------------------------------------------------------------------------- /tests/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/requirements-test.txt -------------------------------------------------------------------------------- /tests/test_compiler_label_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/test_compiler_label_wrapper.sh -------------------------------------------------------------------------------- /tests/test_harness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/test_harness.sh -------------------------------------------------------------------------------- /tests/test_workspace/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/test_workspace/BUILD -------------------------------------------------------------------------------- /tests/test_workspace/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/test_workspace/WORKSPACE -------------------------------------------------------------------------------- /tests/test_workspace/data_file.txt: -------------------------------------------------------------------------------- 1 | This is a data file for testing 2 | -------------------------------------------------------------------------------- /tests/test_workspace/package_external_lib/external_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/test_workspace/package_external_lib/external_lib.py -------------------------------------------------------------------------------- /tests/test_workspace/test_compiler_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/tests/test_workspace/test_compiler_label.py -------------------------------------------------------------------------------- /third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/third_party/README.md -------------------------------------------------------------------------------- /third_party/pypi__portpicker_1_2_0/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/third_party/pypi__portpicker_1_2_0/BUILD -------------------------------------------------------------------------------- /third_party/pypi__portpicker_1_2_0/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/third_party/pypi__portpicker_1_2_0/WORKSPACE -------------------------------------------------------------------------------- /third_party/pypi__portpicker_1_2_0/data_file.txt: -------------------------------------------------------------------------------- 1 | Dummy data file for portpicker 2 | -------------------------------------------------------------------------------- /third_party/pypi__portpicker_1_2_0/portpicker-1.2.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/third_party/pypi__portpicker_1_2_0/portpicker-1.2.0.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/pypi__portpicker_1_2_0/portpicker-1.2.0.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/third_party/pypi__portpicker_1_2_0/portpicker-1.2.0.dist-info/metadata.json -------------------------------------------------------------------------------- /third_party/pypi__portpicker_1_2_0/portpicker.py: -------------------------------------------------------------------------------- 1 | # Dummy source file for testing 2 | 3 | x = 'portpicker' 4 | -------------------------------------------------------------------------------- /third_party/pypi__yapf_0_19_0/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/third_party/pypi__yapf_0_19_0/BUILD -------------------------------------------------------------------------------- /third_party/pypi__yapf_0_19_0/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/third_party/pypi__yapf_0_19_0/WORKSPACE -------------------------------------------------------------------------------- /third_party/pypi__yapf_0_19_0/data_file.txt: -------------------------------------------------------------------------------- 1 | Dummy data file for yapf 2 | -------------------------------------------------------------------------------- /third_party/pypi__yapf_0_19_0/yapf-0.19.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/third_party/pypi__yapf_0_19_0/yapf-0.19.0.dist-info/METADATA -------------------------------------------------------------------------------- /third_party/pypi__yapf_0_19_0/yapf-0.19.0.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/third_party/pypi__yapf_0_19_0/yapf-0.19.0.dist-info/metadata.json -------------------------------------------------------------------------------- /third_party/pypi__yapf_0_19_0/yapf/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy source file for testing 2 | 3 | x = 'yapf' 4 | -------------------------------------------------------------------------------- /toolchain_test_hook.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/toolchain_test_hook.bzl -------------------------------------------------------------------------------- /update_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/subpar/HEAD/update_docs.sh --------------------------------------------------------------------------------