def __init__(self, config, task_engine, project_info=None): CleanBuilder.__init__(self, config, task_engine, builder_name='gradle_clean_builder') self._root_task = None self._project_info = project_info
def check_build_environment(self): CleanBuilder.check_build_environment(self) if self._project_info is None: project_info_cache_path = os.path.join(self._config['build_cache_dir'], 'project_info_cache.json') if os.path.exists(project_info_cache_path): self._project_info = load_json_cache(project_info_cache_path) else: self._project_info = get_project_info(self._config)
def __init__(self, config, task_engine, project_info=None, wait_for_debugger=False): CleanBuilder.__init__(self, config, task_engine, builder_name='gradle_clean_builder') self._root_task = None self._project_info = project_info self._wait_for_debugger = wait_for_debugger