(self)
| 152 | return bootstrap_dirs |
| 153 | |
| 154 | def _copy_in_final_files(self): |
| 155 | if self.name in SDL_BOOTSTRAPS: |
| 156 | # Get the paths for copying SDL's java source code: |
| 157 | sdl_recipe = Recipe.get_recipe(self.name, self.ctx) |
| 158 | sdl_build_dir = sdl_recipe.get_jni_dir() |
| 159 | src_dir = join(sdl_build_dir, "SDL", "android-project", |
| 160 | "app", "src", "main", "java", |
| 161 | "org", "libsdl", "app") |
| 162 | target_dir = join(self.dist_dir, 'src', 'main', 'java', 'org', |
| 163 | 'libsdl', 'app') |
| 164 | |
| 165 | # Do actual copying: |
| 166 | info('Copying in SDL .java files from: ' + str(src_dir)) |
| 167 | if not os.path.exists(target_dir): |
| 168 | os.makedirs(target_dir) |
| 169 | copy_files(src_dir, target_dir, override=True) |
| 170 | |
| 171 | def prepare_build_dir(self): |
| 172 | """Ensure that a build dir exists for the recipe. This same single |
no test coverage detected