Searched full:modules_mapping (Results 1 – 25 of 28) sorted by relevance
12
| /external/bazelbuild-rules_python/gazelle/modules_mapping/ |
| D | def.bzl | 15 """Definitions for the modules_mapping.json generation. 17 The modules_mapping.json file is a mapping from Python modules to the wheel 27 modules_mapping = ctx.actions.declare_file(ctx.attr.modules_mapping_name) 29 args.add("--output_file", modules_mapping.path) 34 outputs = [modules_mapping], 39 return [DefaultInfo(files = depset([modules_mapping]))] 41 modules_mapping = rule( 50 default = "modules_mapping.json", 61 default = "//modules_mapping:generator", 65 … doc = "Creates a modules_mapping.json file for mapping module names to wheel distribution names.",
|
| D | generator.py | 23 # Generator is the modules_mapping.json file generator.
|
| /external/bazelbuild-rules_python/gazelle/manifest/ |
| D | defs.bzl | 24 modules_mapping, 40 modules_mapping: the target for the generated modules_mapping.json file. 78 "$(rootpath {})".format(modules_mapping), 96 modules_mapping,
|
| D | manifest_test.go | 77 log.Println("decoded modules_mapping doesn't match expected value")
|
| D | manifest.go | 135 ModulesMapping ModulesMapping `yaml:"modules_mapping"`
|
| /external/bazelbuild-rules_python/examples/bzlmod_build_file_generation/ |
| D | BUILD.bazel | 14 load("@rules_python_gazelle_plugin//modules_mapping:def.bzl", "modules_mapping") 29 modules_mapping( 50 modules_mapping = ":modules_map",
|
| /external/bazelbuild-rules_python/examples/build_file_generation/ |
| D | BUILD.bazel | 11 load("@rules_python_gazelle_plugin//modules_mapping:def.bzl", "modules_mapping") 25 modules_mapping( 43 modules_mapping = ":modules_map",
|
| D | gazelle_python.yaml | 7 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/ |
| D | README.md | 79 by the `modules_mapping` rule. We'll make a target for consuming this 80 `modules_mapping`, and writing it as a manifest file for Gazelle to read. 94 load("@rules_python_gazelle_plugin//modules_mapping:def.bzl", "modules_mapping") 98 modules_mapping( 112 modules_mapping = ":modules_map", 117 # (the same as what we passed to the modules_mapping rule in WORKSPACE)
|
| D | BUILD.bazel | 30 "//modules_mapping:distribution",
|
| /external/bazelbuild-rules_python/gazelle/python/testdata/dependency_resolution_order/ |
| D | README.md | 6 2. Third-party dependencies matching in the `modules_mapping.json`.
|
| D | gazelle_python.yaml | 16 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/manifest/testdata/ |
| D | gazelle_python.yaml | 2 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/python/testdata/python_target_with_test_in_name/ |
| D | gazelle_python.yaml | 16 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/python/testdata/file_name_matches_import_statement/ |
| D | gazelle_python.yaml | 16 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/python/testdata/monorepo/two/ |
| D | gazelle_python.yaml | 16 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/python/testdata/with_nested_import_statements/ |
| D | gazelle_python.yaml | 16 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/python/testdata/ignored_invalid_imported_module/ |
| D | gazelle_python.yaml | 16 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/python/testdata/python_ignore_dependencies_directive/ |
| D | gazelle_python.yaml | 16 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/python/testdata/monorepo/one/ |
| D | gazelle_python.yaml | 16 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/python/testdata/from_imports/ |
| D | gazelle_python.yaml | 16 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/python/testdata/monorepo/three/ |
| D | gazelle_python.yaml | 16 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/python/testdata/monorepo/ |
| D | gazelle_python.yaml | 16 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/python/testdata/with_third_party_requirements/ |
| D | gazelle_python.yaml | 16 modules_mapping:
|
| /external/bazelbuild-rules_python/gazelle/manifest/generate/ |
| D | generate.go | 75 "The modules_mapping.json file.")
|
12