diff options
Diffstat (limited to 'java/android_resources.go')
-rw-r--r-- | java/android_resources.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/java/android_resources.go b/java/android_resources.go index 038a260d9..3bb3eb554 100644 --- a/java/android_resources.go +++ b/java/android_resources.go @@ -39,15 +39,6 @@ func androidResourceGlob(ctx android.EarlyModuleContext, dir android.Path) andro return ctx.GlobFiles(filepath.Join(dir.String(), "**/*"), androidResourceIgnoreFilenames) } -// androidResourceGlobList creates a rule to write the list of files in the given directory, using -// the standard exclusion patterns for Android resources, to the given output file. -func androidResourceGlobList(ctx android.ModuleContext, dir android.Path, - fileListFile android.WritablePath) { - - android.GlobToListFileRule(ctx, filepath.Join(dir.String(), "**/*"), - androidResourceIgnoreFilenames, fileListFile) -} - type overlayType int const ( |