diff options
author | Colin Cross <ccross@android.com> | 2015-06-17 15:09:06 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2015-06-17 15:36:48 -0700 |
commit | 8f101b45fc876b63f2a556c5b19801dbc8ac5fdc (patch) | |
tree | 2be41986a7a55669b2a6632f84685c6a46e343a8 /java/java.go | |
parent | 1f8c52be73d31f3347bcf7f8fb29b49e87b3864e (diff) |
Allow common.Glob to be called by singletons
Make common.Glob take an interface that is the intersection of
blueprint.ModuleContext and blueprint.SingletonContext used by
Glob and GlobRule, allowing it to be called on either. Also
move ExpandSources and Glob into AndroidModuleContext.
Change-Id: I8d1a3160c5dd201033afdb37210e82d8065b137d
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java.go b/java/java.go index d22f47a75..9787d6025 100644 --- a/java/java.go +++ b/java/java.go @@ -292,7 +292,7 @@ func (j *javaBase) GenerateJavaBuildActions(ctx common.AndroidModuleContext) { javacDeps = append(javacDeps, classpath...) } - srcFiles := common.ExpandSources(ctx, j.properties.Srcs) + srcFiles := ctx.ExpandSources(j.properties.Srcs) srcFiles = j.genSources(ctx, srcFiles, flags) |