aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorTobias Thierer <tobiast@google.com>2018-02-09 09:45:27 +0000
committerTobias Thierer <tobiast@google.com>2018-02-09 09:46:11 +0000
commit606e9de344fae07473dd79e5ac556886a72035de (patch)
treeaabe3b652617aeabf7603e4017e496a03dabe7b3 /python
parentf36a3d9b6da654bf8bd7a49315b1625cf0e774ce (diff)
downloadbuild_soong-606e9de344fae07473dd79e5ac556886a72035de.tar.gz
build_soong-606e9de344fae07473dd79e5ac556886a72035de.tar.bz2
build_soong-606e9de344fae07473dd79e5ac556886a72035de.zip
Revert "Support filegroup in exclude_srcs"
This reverts commit f36a3d9b6da654bf8bd7a49315b1625cf0e774ce. Reason for revert: Broke several builds. I'm acting build cop, reverting. Bug: 70351683 Change-Id: I775ada4e9cb6473519d51420b41b818af163da44
Diffstat (limited to 'python')
-rw-r--r--python/python.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/python/python.go b/python/python.go
index ed879eb0..9a3b1bbc 100644
--- a/python/python.go
+++ b/python/python.go
@@ -266,13 +266,11 @@ func (p *Module) DepsMutator(ctx android.BottomUpMutatorContext) {
android.ExtractSourcesDeps(ctx, p.properties.Data)
// deps from "srcs".
android.ExtractSourcesDeps(ctx, p.properties.Srcs)
- android.ExtractSourcesDeps(ctx, p.properties.Exclude_srcs)
switch p.properties.Actual_version {
case pyVersion2:
// deps from "version.py2.srcs" property.
android.ExtractSourcesDeps(ctx, p.properties.Version.Py2.Srcs)
- android.ExtractSourcesDeps(ctx, p.properties.Version.Py2.Exclude_srcs)
ctx.AddVariationDependencies(nil, pythonLibTag,
uniqueLibs(ctx, p.properties.Libs, "version.py2.libs",
@@ -288,7 +286,6 @@ func (p *Module) DepsMutator(ctx android.BottomUpMutatorContext) {
case pyVersion3:
// deps from "version.py3.srcs" property.
android.ExtractSourcesDeps(ctx, p.properties.Version.Py3.Srcs)
- android.ExtractSourcesDeps(ctx, p.properties.Version.Py3.Exclude_srcs)
ctx.AddVariationDependencies(nil, pythonLibTag,
uniqueLibs(ctx, p.properties.Libs, "version.py3.libs",