Revert "Revert "Soong support for namespaces""

This mostly reverts commit 178d5fefc0
and mostly reapplies change I6d3e52ef62c4cabe85b9a135a54de0e1a6aab29c .

Bug: 65683273
Test: build/soong/scripts/diff_build_graphs.sh \
      --products=aosp_arm \
      'build/blueprint:work^ build/soong:work^' \
      'build/blueprint:work build/soong:work'
      # and see that the only changes were:
      # 1. adding some new files
      # 2. changing some line numbers
Test: m -j nothing # which runs unit tests

Change-Id: I32baae00277a547fdcdd1c2219fe6625ee0e45d7
This commit is contained in:
Jeff Gaston
2017-11-29 16:47:17 -08:00
parent 7154928c93
commit 088e29ed38
10 changed files with 1099 additions and 6 deletions

View File

@@ -23,9 +23,16 @@ import (
)
func NewTestContext() *TestContext {
return &TestContext{
ctx := &TestContext{
Context: blueprint.NewContext(),
}
namespaceExportFilter := func(namespace *Namespace) bool {
return true
}
ctx.SetNameInterface(NewNameResolver(namespaceExportFilter))
return ctx
}
func NewTestArchContext() *TestContext {