MCPcopy Index your code
hub / github.com/kivy/python-for-android / get_build_container_dir

Method get_build_container_dir

pythonforandroid/recipe.py:350–359  ·  view source on GitHub ↗

Given the arch name, returns the directory where it will be built. This returns a different directory depending on what alternative or optional dependencies are being built.

(self, arch)

Source from the content-addressed store, hash-verified

348 return [recipe for recipe in recipes if recipe in self.opt_depends]
349
350 def get_build_container_dir(self, arch):
351 '''Given the arch name, returns the directory where it will be
352 built.
353
354 This returns a different directory depending on what
355 alternative or optional dependencies are being built.
356 '''
357 dir_name = self.get_dir_name()
358 return join(self.ctx.build_dir, 'other_builds',
359 dir_name, '{}__ndk_target_{}'.format(arch, self.ctx.ndk_api))
360
361 def get_dir_name(self):
362 choices = self.check_recipe_choices()

Callers 6

get_build_dirMethod · 0.95
unpackMethod · 0.95
clean_buildMethod · 0.95
build_recipesFunction · 0.45
biglinkFunction · 0.45
get_recipe_envMethod · 0.45

Calls 2

get_dir_nameMethod · 0.95
formatMethod · 0.80

Tested by

no test coverage detected