/aosp12/build/soong/android/ |
H A D | depset_generic.go | 68 transitive []*depSet member 84 func newDepSet(order DepSetOrder, direct interface{}, transitive interface{}) *depSet { 86 transitiveDepSet := sliceToDepSets(transitive, order) 100 transitive: transitiveDepSet, 108 transitive []*depSet member 163 func (b *depSetBuilder) Transitive(transitive interface{}) *depSetBuilder { 164 depSets := sliceToDepSets(transitive, b.order) 165 b.transitive = append(b.transitive, depSets...) 172 return newDepSet(b.order, b.direct.Interface(), b.transitive) 186 for _, dep := range d.transitive {
|
H A D | depset_paths.go | 42 func NewDepSet(order DepSetOrder, direct Paths, transitive []*DepSet) *DepSet { 43 return &DepSet{*newDepSet(order, direct, transitive)} 60 func (b *DepSetBuilder) Transitive(transitive ...*DepSet) *DepSetBuilder { 61 b.depSetBuilder.Transitive(transitive)
|
H A D | packaging.go | 266 func newPackagingSpecsDepSet(direct []PackagingSpec, transitive []*packagingSpecsDepSet) *packaging… 267 return &packagingSpecsDepSet{*newDepSet(TOPOLOGICAL, direct, transitive)}
|
H A D | module.go | 3137 func newInstallPathsDepSet(direct InstallPaths, transitive []*installPathsDepSet) *installPathsDepS… 3138 return &installPathsDepSet{*newDepSet(TOPOLOGICAL, direct, transitive)}
|
/aosp12/build/make/tools/ |
H A D | java-layers.py | 46 self.transitive = set() 49 for d in self.transitive: 68 obj.transitive.add(upper) 81 dep.transitive.add(d.lower) 87 d.transitive.add(dep.lower) 89 dep.transitive = set([x+"." for x in dep.transitive]) 92 print "-->", dep.lower, "-->", dep.transitive
|
/aosp12/build/bazel/json_module_graph/ |
H A D | README.md | 20 * `transitiveDeps` prints the names of the transitive dependencies of the given 22 * `fullTransitiveDeps` returns the full transitive dependencies of the given 25 in the module graph within the transitive closure of given module 28 * `variantTransitions` summarizes the variant transitions in the transitive
|
/aosp12/ |
H A D | BUILD | 2 # file of a compilation action is in a subdirectory of one of the transitive 12 # becomes part of said transitive dependencies and thus every file is in a
|
/aosp12/build/bazel/ |
H A D | bazel.BUILD | 2 # file of a compilation action is in a subdirectory of one of the transitive 12 # becomes part of said transitive dependencies and thus every file is in a
|
/aosp12/build/bazel/rules/ |
H A D | full_cc_library.bzl | 69 # declare all transitive static deps used by this target. It'd be great 70 # if a shared library could declare a transitive exported static dep
|
H A D | cc_object.bzl | 18 # The merged compilation outputs for this cc_object and its transitive
|
H A D | cc_library_static.bzl | 114 transitive = [
|
/aosp12/packages/modules/GeoTZ/geotz_lookup/ |
H A D | jarjar-rules.txt | 1 # Move com.google.common.geometry and any transitive dependencies on guava to one side to avoid
|
/aosp12/frameworks/compile/mclinker/tools/mcld/ |
H A D | Android.bp | 44 // Can be removed once soong supports transitive static library dependencies
|
/aosp12/build/pesto/experiments/prepare_bazel_test_env/data/templates/build/bazel/rules/ |
H A D | cc_test.bzl.template | 44 transitive = [
|
/aosp12/build/bazel/bazel_skylib/ |
H A D | bzl_library.bzl | 28 all_files = depset(ctx.files.srcs, order = "postorder", transitive = deps_files)
|
/aosp12/build/soong/java/ |
H A D | hiddenapi_modular.go | 771 transitive := i.DependencyStubDexJarsByScope 772 transitive.addStubDexJarsByModule(i.StubDexJarsByScope) 773 return transitive
|
/aosp12/art/libartpalette/ |
H A D | Android.bp | 118 "com.android.runtime", // due to the transitive dependency from linker
|
/aosp12/build/soong/cmd/pom2bp/ |
H A D | pom2bp.go | 601 Some Android.bp modules have transitive static dependencies that must be specified when they 605 Some Android.bp modules have transitive runtime dependencies that must be specified when they
|
/aosp12/system/iorap/ |
H A D | Android.bp | 325 // only the last cc_binary should need the full transitive closure of the dependency graph. 409 // only the last cc_binary should need the full transitive closure of the dependency graph.
|
/aosp12/build/soong/cmd/pom2mk/ |
H A D | pom2mk.go | 366 Some Android.mk modules have transitive dependencies that must be specified when they are
|
/aosp12/system/apex/docs/ |
H A D | howto.md | 91 However, if a transitive dependency has a stable ABI, it is not included 113 direct dependency or the transitive dependency has to correctly set the
|
H A D | README.md | 294 APEX files automatically include transitive dependencies of native shared libs
|
/aosp12/build/bazel/rules_cc/examples/ |
H A D | experimental_cc_shared_library.bzl | 101 return depset(direct = dynamic_deps, transitive = transitive_dynamic_deps)
|
/aosp12/bionic/ |
H A D | android-changes-for-ndk-developers.md | 46 had to call `dlopen` or `System.loadLibrary` on all transitive 75 the breadth-first transitive closure of the library and its DT_NEEDED
|
/aosp12/packages/modules/common/build/ |
H A D | allowed_deps.txt | 3 # The list tracks all direct and transitive dependencies that end up within any
|