/build/blueprint/tests/ |
test.sh | 10 ./blueprint.bash 12 if [[ -d .bootstrap/blueprint/test ]]; then 19 ./blueprint.bash 21 if [[ ! -d .bootstrap/blueprint/test ]]; then 28 ./blueprint.bash 30 if [[ -d .bootstrap/blueprint/test ]]; then
|
test_tree_tests.sh | 7 # Go to top of blueprint tree 11 export TEMPDIR=$(mktemp -d -t blueprint.test.XXX) 25 cp -r "${TOP}" "${SRCDIR}/blueprint" 28 export BLUEPRINTDIR=${SRCDIR}/blueprint 30 ${SRCDIR}/blueprint/bootstrap.bash $@ 33 ./blueprint.bash 39 ./blueprint.bash 55 ./blueprint.bash 70 ./blueprint.bash 87 ./blueprint.bas [all...] |
/build/blueprint/ |
.travis.fix-fork.sh | 3 if echo $TRAVIS_BUILD_DIR | grep -vq "github.com/google/blueprint$" ; then 6 mv $TRAVIS_BUILD_DIR google/blueprint 7 cd google/blueprint
|
bootstrap.bash | 4 # Blueprint to generate the minibp binary. To do this simply run the script 7 # It can also be invoked from another script to bootstrap a custom Blueprint- 34 # installed into the builddir. It is set to blueprint's blueprint.bash 36 [ -z "$WRAPPER" ] && WRAPPER="`dirname "${BOOTSTRAP}"`/blueprint.bash" 46 # BLUEPRINTDIR should be set to the path to the blueprint source. It generally 110 echo "BLUEPRINT_BOOTSTRAP_VERSION=2" > $BUILDDIR/.blueprint.bootstrap 111 echo "SRCDIR=\"${SRCDIR}\"" >> $BUILDDIR/.blueprint.bootstrap 112 echo "BLUEPRINTDIR=\"${BLUEPRINTDIR}\"" >> $BUILDDIR/.blueprint.bootstrap 113 echo "NINJA_BUILDDIR=\"${NINJA_BUILDDIR}\"" >> $BUILDDIR/.blueprint.bootstra [all...] |
blueprint_impl.bash | 29 BUILDDIR="${BUILDDIR}/.minibootstrap" build_go minibp github.com/google/blueprint/bootstrap/minibp
|
visit_test.go | 15 package blueprint package 26 VisitDepsDepthFirst string `blueprint:"mutated"` 27 VisitDepsDepthFirstIf string `blueprint:"mutated"` 28 VisitDirectDeps string `blueprint:"mutated"` 29 VisitDirectDepsIf string `blueprint:"mutated"`
|
/build/soong/scripts/ |
microfactory.bash | 61 BLUEPRINTDIR=${TOP}/build/blueprint \ 66 source ${TOP}/build/blueprint/microfactory/microfactory.bash
|
/build/soong/android/ |
register.go | 18 "github.com/google/blueprint" 23 factory blueprint.ModuleFactory 30 factory blueprint.SingletonFactory 38 bottomUpMutator blueprint.BottomUpMutator 39 topDownMutator blueprint.TopDownMutator 47 // ModuleFactoryAdaptor wraps a ModuleFactory into a blueprint.ModuleFactory by converting a Module 48 // into a blueprint.Module and a list of property structs 49 func ModuleFactoryAdaptor(factory ModuleFactory) blueprint.ModuleFactory { 50 return func() (blueprint.Module, []interface{}) { 58 // SingletonFactoryAdaptor wraps a SingletonFactory into a blueprint.SingletonFactory by convertin [all...] |
mutator.go | 18 "github.com/google/blueprint" 19 "github.com/google/blueprint/proptools" 30 func registerMutatorsToContext(ctx *blueprint.Context, mutators []*mutator) { 32 var handle blueprint.MutatorHandle 44 func registerMutators(ctx *blueprint.Context, preArch, preDeps, postDeps []RegisterMutatorFunc) { 120 OtherModuleName(m blueprint.Module) string 121 OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) 122 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag 124 CreateModule(blueprint.ModuleFactory, ...interface{} [all...] |
defs.go | 18 "github.com/google/blueprint" 19 _ "github.com/google/blueprint/bootstrap" 32 blueprint.RuleParams{ 41 blueprint.RuleParams{ 49 blueprint.RuleParams{ 56 blueprint.RuleParams{ 64 blueprint.RuleParams{ 71 blueprint.RuleParams{ 78 blueprint.RuleParams{ 85 blueprint.RuleParams [all...] |
package_ctx.go | 22 "github.com/google/blueprint" 23 "github.com/google/blueprint/pathtools" 26 // PackageContext is a wrapper for blueprint.PackageContext that adds 29 blueprint.PackageContext 33 return PackageContext{blueprint.NewPackageContext(pkgPath)} 76 // VariableFunc wraps blueprint.PackageContext.VariableFunc, converting the interface{} config 79 f func(PackageVarContext) string) blueprint.Variable { 91 // PoolFunc wraps blueprint.PackageContext.PoolFunc, converting the interface{} config 94 f func(PackagePoolContext) blueprint.PoolParams) blueprint.Pool [all...] |
singleton.go | 18 "github.com/google/blueprint" 19 "github.com/google/blueprint/pathtools" 26 ModuleName(module blueprint.Module) string 27 ModuleDir(module blueprint.Module) string 28 ModuleSubDir(module blueprint.Module) string 29 ModuleType(module blueprint.Module) string 30 BlueprintFile(module blueprint.Module) string 32 ModuleErrorf(module blueprint.Module, format string, args ...interface{}) 37 Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rul [all...] |
namespace.go | 26 "github.com/google/blueprint" 77 // A NameResolver implements blueprint.NameInterface, and implements the logic to 173 func (r *NameResolver) NewModule(ctx blueprint.NamespaceContext, moduleGroup blueprint.ModuleGroup, module blueprint.Module) (namespace blueprint.Namespace, errs []error) { 201 func (r *NameResolver) AllModules() []blueprint.ModuleGroup { 202 childLists := [][]blueprint.ModuleGroup{} 210 allModules := make([]blueprint.ModuleGroup, 0, totalCount) 236 func (r *NameResolver) ModuleFromName(name string, namespace blueprint.Namespace) (group blueprint.ModuleGroup, found bool) [all...] |
module.go | 24 "github.com/google/blueprint" 25 "github.com/google/blueprint/pathtools" 38 Rule blueprint.Rule 39 Deps blueprint.Deps 81 // BaseModuleContext is the same as blueprint.BaseModuleContext except that Config() returns 132 // android.Module instead of a blueprint.Module 133 OtherModuleName(m blueprint.Module) string 134 OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) 135 OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTa [all...] |
/external/boringssl/src/util/ |
generate_build_files.py | 86 with open('sources.bp', 'w+') as blueprint: 87 blueprint.write(self.header.replace('#', '//')) 89 blueprint.write('cc_defaults {\n') 90 blueprint.write(' name: "libcrypto_sources",\n') 91 blueprint.write(' srcs: [\n') 93 blueprint.write(' "%s",\n' % f) 94 blueprint.write(' ],\n') 95 blueprint.write(' target: {\n') 103 blueprint.write(' linux_%s: {\n' % arch) 104 blueprint.write(' srcs: [\n' [all...] |
/build/blueprint/bootstrap/ |
bootstrap.go | 24 "github.com/google/blueprint" 25 "github.com/google/blueprint/pathtools" 32 pctx = blueprint.NewPackageContext("github.com/google/blueprint/bootstrap") 57 blueprint.RuleParams{ 66 blueprint.RuleParams{ 74 blueprint.RuleParams{ 82 blueprint.RuleParams{ 90 blueprint.RuleParams{ 98 blueprint.RuleParams [all...] |
glob.go | 22 "github.com/google/blueprint" 23 "github.com/google/blueprint/deptools" 24 "github.com/google/blueprint/pathtools" 48 blueprint.RuleParams{ 54 Deps: blueprint.DepsGCC, 62 Build(pctx blueprint.PackageContext, params blueprint.BuildParams) 72 ctx.Build(pctx, blueprint.BuildParams{ 113 globLister func() []blueprint.GlobPath 116 func globSingletonFactory(ctx *blueprint.Context) func() blueprint.Singleton [all...] |
writedocs.go | 10 "github.com/google/blueprint" 11 "github.com/google/blueprint/bootstrap/bpdoc" 12 "github.com/google/blueprint/pathtools" 17 func ModuleTypeDocs(ctx *blueprint.Context) ([]*bpdoc.ModuleType, error) { 24 func(module blueprint.Module) { 53 ctx.VisitDepsDepthFirst(primaryBuilder, func(module blueprint.Module) { 66 func writeDocs(ctx *blueprint.Context, filename string) error {
|
command.go | 29 "github.com/google/blueprint" 30 "github.com/google/blueprint/deptools" 63 func Main(ctx *blueprint.Context, config interface{}, extraNinjaFileDeps ...string) { 219 case *blueprint.BlueprintError, 220 *blueprint.ModuleError, 221 *blueprint.PropertyError:
|
/build/soong/ui/build/ |
soong.go | 23 "github.com/google/blueprint/microfactory" 31 ctx.BeginTrace("blueprint bootstrap") 34 cmd := Command(ctx, config, "blueprint bootstrap", "build/blueprint/bootstrap.bash", "-t") 35 cmd.Environment.Set("BLUEPRINTDIR", "./build/blueprint") 36 cmd.Environment.Set("BOOTSTRAP", "./build/blueprint/bootstrap.bash") 79 cfg.Map("github.com/google/blueprint", "build/blueprint") 84 if _, err := microfactory.Build(&cfg, minibp, "github.com/google/blueprint/bootstrap/minibp"); err != nil {
|
/build/blueprint/bootstrap/minibp/ |
main.go | 21 "github.com/google/blueprint" 22 "github.com/google/blueprint/bootstrap" 47 ctx := blueprint.NewContext()
|
/external/perfetto/tools/ |
gen_android_bp | 37 # Default targets to translate to the blueprint file. 50 # blueprint target. 85 # Compiler flags which are passed through to the blueprint. 88 # Compiler defines which are passed through to the blueprint. 159 """A single module (e.g., cc_binary, cc_test) in a blueprint.""" 234 class Blueprint(object): 241 """Adds a new module to the blueprint, replacing any existing module 295 def apply_module_dependency(blueprint, desc, module, dep_name): 304 blueprint: Blueprint instance which is being generated [all...] |
/build/soong/java/ |
app_builder.go | 24 "github.com/google/blueprint" 31 blueprint.RuleParams{ 39 blueprint.RuleParams{ 58 blueprint.RuleParams{ 101 blueprint.RuleParams{
|
/build/soong/cc/ |
builder.go | 28 "github.com/google/blueprint" 50 blueprint.RuleParams{ 52 Deps: blueprint.DepsGCC, 59 blueprint.RuleParams{ 69 blueprint.RuleParams{ 76 blueprint.RuleParams{ 85 blueprint.RuleParams{ 92 blueprint.RuleParams{ 99 blueprint.RuleParams{ 105 blueprint.RuleParams [all...] |
/test/vts-testcase/fuzz/iface_fuzzer/ |
ProtoFuzzerMutateFns.cpp | 64 const EnumData &blueprint = local 67 size_t size = blueprint.enumerator_size(); 70 ScalarData scalar_value = blueprint.scalar_value(idx); 71 string scalar_type = blueprint.scalar_type(); 161 const TypeSpec &blueprint = FindPredefinedType(result.predefined_type()); local 162 for (const VarSpec &struct_value : blueprint.struct_value()) { 178 const TypeSpec &blueprint = FindPredefinedType(result.predefined_type()); local 179 size_t size = blueprint.union_value_size(); 185 this->RandomGen(blueprint.union_value(idx));
|