Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 1 | # ****************************************************************************** |
| 2 | # *** This file is generated and should not be edited *** |
| 3 | # ****************************************************************************** |
| 4 | # |
| 5 | # This file contains variables, rules, and pools with name prefixes indicating |
| 6 | # they were generated by the following Go packages: |
| 7 | # |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 8 | # bootstrap [from Go package github.com/google/blueprint/bootstrap] |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 9 | # |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 10 | ninja_required_version = 1.6.0 |
| 11 | |
| 12 | g.bootstrap.buildDir = @@BuildDir@@ |
| 13 | |
| 14 | g.bootstrap.BinDir = ${g.bootstrap.buildDir}/.bootstrap/bin |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 15 | |
| 16 | g.bootstrap.bootstrapCmd = @@Bootstrap@@ |
| 17 | |
| 18 | g.bootstrap.bootstrapManifest = @@BootstrapManifest@@ |
| 19 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 20 | g.bootstrap.chooseStageCmd = ${g.bootstrap.buildDir}/.bootstrap/bin/choosestage |
| 21 | |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 22 | g.bootstrap.compileCmd = @@GoCompile@@ |
| 23 | |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 24 | g.bootstrap.goRoot = @@GoRoot@@ |
| 25 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 26 | g.bootstrap.goTestMainCmd = ${g.bootstrap.buildDir}/.bootstrap/bin/gotestmain |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 27 | |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 28 | g.bootstrap.goTestRunnerCmd = ${g.bootstrap.buildDir}/.bootstrap/bin/gotestrunner |
| 29 | |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 30 | g.bootstrap.linkCmd = @@GoLink@@ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 31 | |
| 32 | g.bootstrap.srcDir = @@SrcDir@@ |
| 33 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 34 | builddir = ${g.bootstrap.buildDir}/.minibootstrap |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 35 | |
| 36 | rule g.bootstrap.bootstrap |
Dan Willemsen | 87b17d1 | 2015-07-14 00:39:06 -0700 | [diff] [blame] | 37 | command = BUILDDIR=${g.bootstrap.buildDir} ${g.bootstrap.bootstrapCmd} -i ${in} |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 38 | description = bootstrap ${in} |
| 39 | generator = true |
| 40 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 41 | rule g.bootstrap.chooseStage |
| 42 | command = ${g.bootstrap.chooseStageCmd} --current ${current} --bootstrap ${g.bootstrap.bootstrapManifest} -o ${out} ${in} |
| 43 | description = choosing next stage |
| 44 | |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 45 | rule g.bootstrap.compile |
| 46 | command = GOROOT='${g.bootstrap.goRoot}' ${g.bootstrap.compileCmd} -o ${out} -p ${pkgPath} -complete ${incFlags} -pack ${in} |
| 47 | description = compile ${out} |
| 48 | |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 49 | rule g.bootstrap.cp |
| 50 | command = cp ${in} ${out} |
| 51 | description = cp ${out} |
| 52 | |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 53 | rule g.bootstrap.gotestmain |
| 54 | command = ${g.bootstrap.goTestMainCmd} -o ${out} -pkg ${pkg} ${in} |
| 55 | description = gotestmain ${out} |
| 56 | |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 57 | rule g.bootstrap.link |
| 58 | command = GOROOT='${g.bootstrap.goRoot}' ${g.bootstrap.linkCmd} -o ${out} ${libDirFlags} ${in} |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 59 | description = link ${out} |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 60 | |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 61 | rule g.bootstrap.test |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 62 | command = ${g.bootstrap.goTestRunnerCmd} -p ${pkgSrcDir} -f ${out} -- ${in} -test.short |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 63 | description = test ${pkg} |
| 64 | |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 65 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
| 66 | # Module: blueprint |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 67 | # Variant: |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 68 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 69 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 70 | # Defined: build/blueprint/Blueprints:1:1 |
| 71 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 72 | build $ |
| 73 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/github.com/google/blueprint.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 74 | : g.bootstrap.compile ${g.bootstrap.srcDir}/build/blueprint/context.go $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 75 | ${g.bootstrap.srcDir}/build/blueprint/live_tracker.go $ |
| 76 | ${g.bootstrap.srcDir}/build/blueprint/mangle.go $ |
| 77 | ${g.bootstrap.srcDir}/build/blueprint/module_ctx.go $ |
| 78 | ${g.bootstrap.srcDir}/build/blueprint/ninja_defs.go $ |
| 79 | ${g.bootstrap.srcDir}/build/blueprint/ninja_strings.go $ |
| 80 | ${g.bootstrap.srcDir}/build/blueprint/ninja_writer.go $ |
| 81 | ${g.bootstrap.srcDir}/build/blueprint/package_ctx.go $ |
| 82 | ${g.bootstrap.srcDir}/build/blueprint/scope.go $ |
| 83 | ${g.bootstrap.srcDir}/build/blueprint/singleton_ctx.go $ |
| 84 | ${g.bootstrap.srcDir}/build/blueprint/unpack.go $ |
| 85 | ${g.bootstrap.srcDir}/build/blueprint/context_test.go $ |
| 86 | ${g.bootstrap.srcDir}/build/blueprint/ninja_strings_test.go $ |
| 87 | ${g.bootstrap.srcDir}/build/blueprint/ninja_writer_test.go $ |
| 88 | ${g.bootstrap.srcDir}/build/blueprint/splice_modules_test.go $ |
| 89 | ${g.bootstrap.srcDir}/build/blueprint/unpack_test.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 90 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 91 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ |
| 92 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a $ |
| 93 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a |
| 94 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 95 | pkgPath = github.com/google/blueprint |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 96 | default $ |
| 97 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/github.com/google/blueprint.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 98 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 99 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.go: $ |
| 100 | g.bootstrap.gotestmain $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 101 | ${g.bootstrap.srcDir}/build/blueprint/context_test.go $ |
| 102 | ${g.bootstrap.srcDir}/build/blueprint/ninja_strings_test.go $ |
| 103 | ${g.bootstrap.srcDir}/build/blueprint/ninja_writer_test.go $ |
| 104 | ${g.bootstrap.srcDir}/build/blueprint/splice_modules_test.go $ |
| 105 | ${g.bootstrap.srcDir}/build/blueprint/unpack_test.go | $ |
| 106 | ${g.bootstrap.goTestMainCmd} |
| 107 | pkg = github.com/google/blueprint |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 108 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.go |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 109 | |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 110 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.a: $ |
| 111 | g.bootstrap.compile $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 112 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 113 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 114 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/github.com/google/blueprint.a |
| 115 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint/test |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 116 | pkgPath = main |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 117 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 118 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 119 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test: g.bootstrap.link $ |
| 120 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.a | $ |
| 121 | ${g.bootstrap.linkCmd} |
| 122 | libDirFlags = -L ${g.bootstrap.buildDir}/.bootstrap/blueprint/test -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg |
| 123 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 124 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 125 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.passed: $ |
| 126 | g.bootstrap.test $ |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 127 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test | $ |
| 128 | ${g.bootstrap.goTestRunnerCmd} |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 129 | pkg = github.com/google/blueprint |
| 130 | pkgSrcDir = ${g.bootstrap.srcDir}/build/blueprint |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 131 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.passed |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 132 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 133 | build $ |
| 134 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg/github.com/google/blueprint.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 135 | : g.bootstrap.compile ${g.bootstrap.srcDir}/build/blueprint/context.go $ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 136 | ${g.bootstrap.srcDir}/build/blueprint/live_tracker.go $ |
| 137 | ${g.bootstrap.srcDir}/build/blueprint/mangle.go $ |
| 138 | ${g.bootstrap.srcDir}/build/blueprint/module_ctx.go $ |
| 139 | ${g.bootstrap.srcDir}/build/blueprint/ninja_defs.go $ |
| 140 | ${g.bootstrap.srcDir}/build/blueprint/ninja_strings.go $ |
| 141 | ${g.bootstrap.srcDir}/build/blueprint/ninja_writer.go $ |
| 142 | ${g.bootstrap.srcDir}/build/blueprint/package_ctx.go $ |
| 143 | ${g.bootstrap.srcDir}/build/blueprint/scope.go $ |
| 144 | ${g.bootstrap.srcDir}/build/blueprint/singleton_ctx.go $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 145 | ${g.bootstrap.srcDir}/build/blueprint/unpack.go | $ |
| 146 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 147 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ |
| 148 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a $ |
| 149 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a $ |
| 150 | || ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/test.passed |
| 151 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 152 | pkgPath = github.com/google/blueprint |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 153 | default $ |
| 154 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg/github.com/google/blueprint.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 155 | |
| 156 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
| 157 | # Module: blueprint-bootstrap |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 158 | # Variant: |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 159 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 160 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Colin Cross | 7449857 | 2015-11-03 14:44:07 -0800 | [diff] [blame^] | 161 | # Defined: build/blueprint/Blueprints:80:1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 162 | |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 163 | build $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 164 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap/pkg/github.com/google/blueprint/bootstrap.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 165 | : g.bootstrap.compile $ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 166 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/bootstrap.go $ |
| 167 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/cleanup.go $ |
| 168 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/command.go $ |
| 169 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/config.go $ |
Colin Cross | 0bc4268 | 2015-06-18 18:06:46 -0700 | [diff] [blame] | 170 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/doc.go $ |
| 171 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/writedocs.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 172 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 173 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ |
| 174 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a $ |
| 175 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a $ |
| 176 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg/github.com/google/blueprint.a $ |
| 177 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg/github.com/google/blueprint/deptools.a $ |
| 178 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg/github.com/google/blueprint/bootstrap/bpdoc.a |
| 179 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 180 | pkgPath = github.com/google/blueprint/bootstrap |
| 181 | default $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 182 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap/pkg/github.com/google/blueprint/bootstrap.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 183 | |
| 184 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Colin Cross | 0bc4268 | 2015-06-18 18:06:46 -0700 | [diff] [blame] | 185 | # Module: blueprint-bootstrap-bpdoc |
| 186 | # Variant: |
| 187 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 188 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Colin Cross | 7449857 | 2015-11-03 14:44:07 -0800 | [diff] [blame^] | 189 | # Defined: build/blueprint/Blueprints:99:1 |
Colin Cross | 0bc4268 | 2015-06-18 18:06:46 -0700 | [diff] [blame] | 190 | |
| 191 | build $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 192 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg/github.com/google/blueprint/bootstrap/bpdoc.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 193 | : g.bootstrap.compile $ |
Colin Cross | 0bc4268 | 2015-06-18 18:06:46 -0700 | [diff] [blame] | 194 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/bpdoc/bpdoc.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 195 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 196 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ |
| 197 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a $ |
| 198 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a $ |
| 199 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg/github.com/google/blueprint.a |
| 200 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg |
Colin Cross | 0bc4268 | 2015-06-18 18:06:46 -0700 | [diff] [blame] | 201 | pkgPath = github.com/google/blueprint/bootstrap/bpdoc |
| 202 | default $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 203 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg/github.com/google/blueprint/bootstrap/bpdoc.a |
Colin Cross | 0bc4268 | 2015-06-18 18:06:46 -0700 | [diff] [blame] | 204 | |
| 205 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 206 | # Module: blueprint-deptools |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 207 | # Variant: |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 208 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 209 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 210 | # Defined: build/blueprint/Blueprints:46:1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 211 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 212 | build $ |
| 213 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg/github.com/google/blueprint/deptools.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 214 | : g.bootstrap.compile $ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 215 | ${g.bootstrap.srcDir}/build/blueprint/deptools/depfile.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 216 | ${g.bootstrap.compileCmd} |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 217 | pkgPath = github.com/google/blueprint/deptools |
| 218 | default $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 219 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg/github.com/google/blueprint/deptools.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 220 | |
| 221 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
| 222 | # Module: blueprint-parser |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 223 | # Variant: |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 224 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 225 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 226 | # Defined: build/blueprint/Blueprints:31:1 |
| 227 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 228 | build $ |
| 229 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/github.com/google/blueprint/parser.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 230 | : g.bootstrap.compile $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 231 | ${g.bootstrap.srcDir}/build/blueprint/parser/modify.go $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 232 | ${g.bootstrap.srcDir}/build/blueprint/parser/parser.go $ |
| 233 | ${g.bootstrap.srcDir}/build/blueprint/parser/printer.go $ |
| 234 | ${g.bootstrap.srcDir}/build/blueprint/parser/sort.go $ |
| 235 | ${g.bootstrap.srcDir}/build/blueprint/parser/parser_test.go $ |
| 236 | ${g.bootstrap.srcDir}/build/blueprint/parser/printer_test.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 237 | ${g.bootstrap.compileCmd} |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 238 | pkgPath = github.com/google/blueprint/parser |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 239 | default $ |
| 240 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/github.com/google/blueprint/parser.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 241 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 242 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.go: $ |
| 243 | g.bootstrap.gotestmain $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 244 | ${g.bootstrap.srcDir}/build/blueprint/parser/parser_test.go $ |
| 245 | ${g.bootstrap.srcDir}/build/blueprint/parser/printer_test.go | $ |
| 246 | ${g.bootstrap.goTestMainCmd} |
| 247 | pkg = github.com/google/blueprint/parser |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 248 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.go |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 249 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 250 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.a: $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 251 | g.bootstrap.compile $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 252 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 253 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 254 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/github.com/google/blueprint/parser.a |
| 255 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 256 | pkgPath = main |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 257 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 258 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 259 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test: $ |
| 260 | g.bootstrap.link $ |
| 261 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.a | $ |
| 262 | ${g.bootstrap.linkCmd} |
| 263 | libDirFlags = -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test |
| 264 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 265 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 266 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.passed: $ |
| 267 | g.bootstrap.test $ |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 268 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test | $ |
| 269 | ${g.bootstrap.goTestRunnerCmd} |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 270 | pkg = github.com/google/blueprint/parser |
| 271 | pkgSrcDir = ${g.bootstrap.srcDir}/build/blueprint/parser |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 272 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.passed |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 273 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 274 | build $ |
| 275 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 276 | : g.bootstrap.compile $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 277 | ${g.bootstrap.srcDir}/build/blueprint/parser/modify.go $ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 278 | ${g.bootstrap.srcDir}/build/blueprint/parser/parser.go $ |
| 279 | ${g.bootstrap.srcDir}/build/blueprint/parser/printer.go $ |
| 280 | ${g.bootstrap.srcDir}/build/blueprint/parser/sort.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 281 | ${g.bootstrap.compileCmd} || $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 282 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/test.passed |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 283 | pkgPath = github.com/google/blueprint/parser |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 284 | default $ |
| 285 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 286 | |
| 287 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
| 288 | # Module: blueprint-pathtools |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 289 | # Variant: |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 290 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 291 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 292 | # Defined: build/blueprint/Blueprints:52:1 |
| 293 | |
| 294 | build $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 295 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/github.com/google/blueprint/pathtools.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 296 | : g.bootstrap.compile $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 297 | ${g.bootstrap.srcDir}/build/blueprint/pathtools/lists.go $ |
| 298 | ${g.bootstrap.srcDir}/build/blueprint/pathtools/glob.go $ |
| 299 | ${g.bootstrap.srcDir}/build/blueprint/pathtools/glob_test.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 300 | ${g.bootstrap.compileCmd} |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 301 | pkgPath = github.com/google/blueprint/pathtools |
| 302 | default $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 303 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/github.com/google/blueprint/pathtools.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 304 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 305 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.go: $ |
| 306 | g.bootstrap.gotestmain $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 307 | ${g.bootstrap.srcDir}/build/blueprint/pathtools/glob_test.go | $ |
| 308 | ${g.bootstrap.goTestMainCmd} |
| 309 | pkg = github.com/google/blueprint/pathtools |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 310 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.go |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 311 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 312 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.a: $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 313 | g.bootstrap.compile $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 314 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 315 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 316 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/github.com/google/blueprint/pathtools.a |
| 317 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 318 | pkgPath = main |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 319 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 320 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 321 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test: $ |
| 322 | g.bootstrap.link $ |
| 323 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.a | $ |
| 324 | ${g.bootstrap.linkCmd} |
| 325 | libDirFlags = -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test |
| 326 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 327 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 328 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.passed: $ |
| 329 | g.bootstrap.test $ |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 330 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test | $ |
| 331 | ${g.bootstrap.goTestRunnerCmd} |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 332 | pkg = github.com/google/blueprint/pathtools |
| 333 | pkgSrcDir = ${g.bootstrap.srcDir}/build/blueprint/pathtools |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 334 | default $ |
| 335 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.passed |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 336 | |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 337 | build $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 338 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 339 | : g.bootstrap.compile $ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 340 | ${g.bootstrap.srcDir}/build/blueprint/pathtools/lists.go $ |
| 341 | ${g.bootstrap.srcDir}/build/blueprint/pathtools/glob.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 342 | ${g.bootstrap.compileCmd} || $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 343 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/test.passed |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 344 | pkgPath = github.com/google/blueprint/pathtools |
| 345 | default $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 346 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 347 | |
| 348 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
| 349 | # Module: blueprint-proptools |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 350 | # Variant: |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 351 | # Type: bootstrap_go_package |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 352 | # Factory: github.com/google/blueprint/bootstrap.newGoPackageModuleFactory.func1 |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 353 | # Defined: build/blueprint/Blueprints:64:1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 354 | |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 355 | build $ |
Colin Cross | 7449857 | 2015-11-03 14:44:07 -0800 | [diff] [blame^] | 356 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/github.com/google/blueprint/proptools.a $ |
| 357 | : g.bootstrap.compile $ |
| 358 | ${g.bootstrap.srcDir}/build/blueprint/proptools/clone.go $ |
| 359 | ${g.bootstrap.srcDir}/build/blueprint/proptools/extend.go $ |
| 360 | ${g.bootstrap.srcDir}/build/blueprint/proptools/proptools.go $ |
| 361 | ${g.bootstrap.srcDir}/build/blueprint/proptools/typeequal.go $ |
| 362 | ${g.bootstrap.srcDir}/build/blueprint/proptools/clone_test.go $ |
| 363 | ${g.bootstrap.srcDir}/build/blueprint/proptools/extend_test.go $ |
| 364 | ${g.bootstrap.srcDir}/build/blueprint/proptools/typeequal_test.go | $ |
| 365 | ${g.bootstrap.compileCmd} |
| 366 | pkgPath = github.com/google/blueprint/proptools |
| 367 | default $ |
| 368 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/github.com/google/blueprint/proptools.a |
| 369 | |
| 370 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.go: $ |
| 371 | g.bootstrap.gotestmain $ |
| 372 | ${g.bootstrap.srcDir}/build/blueprint/proptools/clone_test.go $ |
| 373 | ${g.bootstrap.srcDir}/build/blueprint/proptools/extend_test.go $ |
| 374 | ${g.bootstrap.srcDir}/build/blueprint/proptools/typeequal_test.go | $ |
| 375 | ${g.bootstrap.goTestMainCmd} |
| 376 | pkg = github.com/google/blueprint/proptools |
| 377 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.go |
| 378 | |
| 379 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.a: $ |
| 380 | g.bootstrap.compile $ |
| 381 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.go | $ |
| 382 | ${g.bootstrap.compileCmd} $ |
| 383 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/github.com/google/blueprint/proptools.a |
| 384 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test |
| 385 | pkgPath = main |
| 386 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.a |
| 387 | |
| 388 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test: $ |
| 389 | g.bootstrap.link $ |
| 390 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.a | $ |
| 391 | ${g.bootstrap.linkCmd} |
| 392 | libDirFlags = -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test |
| 393 | default ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test |
| 394 | |
| 395 | build ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.passed: $ |
| 396 | g.bootstrap.test $ |
| 397 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test | $ |
| 398 | ${g.bootstrap.goTestRunnerCmd} |
| 399 | pkg = github.com/google/blueprint/proptools |
| 400 | pkgSrcDir = ${g.bootstrap.srcDir}/build/blueprint/proptools |
| 401 | default $ |
| 402 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.passed |
| 403 | |
| 404 | build $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 405 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 406 | : g.bootstrap.compile $ |
Colin Cross | 7449857 | 2015-11-03 14:44:07 -0800 | [diff] [blame^] | 407 | ${g.bootstrap.srcDir}/build/blueprint/proptools/clone.go $ |
| 408 | ${g.bootstrap.srcDir}/build/blueprint/proptools/extend.go $ |
| 409 | ${g.bootstrap.srcDir}/build/blueprint/proptools/proptools.go $ |
| 410 | ${g.bootstrap.srcDir}/build/blueprint/proptools/typeequal.go | $ |
| 411 | ${g.bootstrap.compileCmd} || $ |
| 412 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/test.passed |
Colin Cross | 70b4059 | 2015-03-23 12:57:34 -0700 | [diff] [blame] | 413 | pkgPath = github.com/google/blueprint/proptools |
| 414 | default $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 415 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 416 | |
| 417 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 418 | # Module: choosestage |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 419 | # Variant: |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 420 | # Type: bootstrap_core_go_binary |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 421 | # Factory: github.com/google/blueprint/bootstrap.newGoBinaryModuleFactory.func1 |
Colin Cross | 7449857 | 2015-11-03 14:44:07 -0800 | [diff] [blame^] | 422 | # Defined: build/blueprint/Blueprints:142:1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 423 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 424 | build ${g.bootstrap.buildDir}/.bootstrap/choosestage/obj/choosestage.a: $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 425 | g.bootstrap.compile $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 426 | ${g.bootstrap.srcDir}/build/blueprint/choosestage/choosestage.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 427 | ${g.bootstrap.compileCmd} |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 428 | pkgPath = choosestage |
| 429 | default ${g.bootstrap.buildDir}/.bootstrap/choosestage/obj/choosestage.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 430 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 431 | build ${g.bootstrap.buildDir}/.bootstrap/choosestage/obj/a.out: $ |
| 432 | g.bootstrap.link $ |
| 433 | ${g.bootstrap.buildDir}/.bootstrap/choosestage/obj/choosestage.a | $ |
| 434 | ${g.bootstrap.linkCmd} |
| 435 | default ${g.bootstrap.buildDir}/.bootstrap/choosestage/obj/a.out |
| 436 | build ${g.bootstrap.BinDir}/choosestage: g.bootstrap.cp $ |
| 437 | ${g.bootstrap.buildDir}/.bootstrap/choosestage/obj/a.out |
| 438 | default ${g.bootstrap.BinDir}/choosestage |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 439 | |
| 440 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 441 | # Module: gotestmain |
| 442 | # Variant: |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 443 | # Type: bootstrap_core_go_binary |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 444 | # Factory: github.com/google/blueprint/bootstrap.newGoBinaryModuleFactory.func1 |
Colin Cross | 7449857 | 2015-11-03 14:44:07 -0800 | [diff] [blame^] | 445 | # Defined: build/blueprint/Blueprints:132:1 |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 446 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 447 | build ${g.bootstrap.buildDir}/.bootstrap/gotestmain/obj/gotestmain.a: $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 448 | g.bootstrap.compile $ |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 449 | ${g.bootstrap.srcDir}/build/blueprint/gotestmain/gotestmain.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 450 | ${g.bootstrap.compileCmd} |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 451 | pkgPath = gotestmain |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 452 | default ${g.bootstrap.buildDir}/.bootstrap/gotestmain/obj/gotestmain.a |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 453 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 454 | build ${g.bootstrap.buildDir}/.bootstrap/gotestmain/obj/a.out: $ |
| 455 | g.bootstrap.link $ |
| 456 | ${g.bootstrap.buildDir}/.bootstrap/gotestmain/obj/gotestmain.a | $ |
| 457 | ${g.bootstrap.linkCmd} |
| 458 | default ${g.bootstrap.buildDir}/.bootstrap/gotestmain/obj/a.out |
| 459 | build ${g.bootstrap.BinDir}/gotestmain: g.bootstrap.cp $ |
| 460 | ${g.bootstrap.buildDir}/.bootstrap/gotestmain/obj/a.out |
| 461 | default ${g.bootstrap.BinDir}/gotestmain |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 462 | |
| 463 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 464 | # Module: gotestrunner |
| 465 | # Variant: |
| 466 | # Type: bootstrap_core_go_binary |
| 467 | # Factory: github.com/google/blueprint/bootstrap.newGoBinaryModuleFactory.func1 |
Colin Cross | 7449857 | 2015-11-03 14:44:07 -0800 | [diff] [blame^] | 468 | # Defined: build/blueprint/Blueprints:137:1 |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 469 | |
| 470 | build ${g.bootstrap.buildDir}/.bootstrap/gotestrunner/obj/gotestrunner.a: $ |
| 471 | g.bootstrap.compile $ |
| 472 | ${g.bootstrap.srcDir}/build/blueprint/gotestrunner/gotestrunner.go | $ |
| 473 | ${g.bootstrap.compileCmd} |
| 474 | pkgPath = gotestrunner |
| 475 | default ${g.bootstrap.buildDir}/.bootstrap/gotestrunner/obj/gotestrunner.a |
| 476 | |
| 477 | build ${g.bootstrap.buildDir}/.bootstrap/gotestrunner/obj/a.out: $ |
| 478 | g.bootstrap.link $ |
| 479 | ${g.bootstrap.buildDir}/.bootstrap/gotestrunner/obj/gotestrunner.a | $ |
| 480 | ${g.bootstrap.linkCmd} |
| 481 | default ${g.bootstrap.buildDir}/.bootstrap/gotestrunner/obj/a.out |
| 482 | build ${g.bootstrap.BinDir}/gotestrunner: g.bootstrap.cp $ |
| 483 | ${g.bootstrap.buildDir}/.bootstrap/gotestrunner/obj/a.out |
| 484 | default ${g.bootstrap.BinDir}/gotestrunner |
| 485 | |
| 486 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 487 | # Module: minibp |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 488 | # Variant: |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 489 | # Type: bootstrap_core_go_binary |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 490 | # Factory: github.com/google/blueprint/bootstrap.newGoBinaryModuleFactory.func1 |
Colin Cross | 7449857 | 2015-11-03 14:44:07 -0800 | [diff] [blame^] | 491 | # Defined: build/blueprint/Blueprints:111:1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 492 | |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 493 | build ${g.bootstrap.buildDir}/.bootstrap/minibp/obj/minibp.a: $ |
| 494 | g.bootstrap.compile $ |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 495 | ${g.bootstrap.srcDir}/build/blueprint/bootstrap/minibp/main.go | $ |
Colin Cross | cbac5fb | 2015-08-24 15:41:17 -0700 | [diff] [blame] | 496 | ${g.bootstrap.compileCmd} $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 497 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg/github.com/google/blueprint/parser.a $ |
| 498 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg/github.com/google/blueprint/pathtools.a $ |
| 499 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg/github.com/google/blueprint/proptools.a $ |
| 500 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg/github.com/google/blueprint.a $ |
| 501 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg/github.com/google/blueprint/deptools.a $ |
| 502 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg/github.com/google/blueprint/bootstrap/bpdoc.a $ |
| 503 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap/pkg/github.com/google/blueprint/bootstrap.a |
| 504 | incFlags = -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg -I ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap/pkg |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 505 | pkgPath = minibp |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 506 | default ${g.bootstrap.buildDir}/.bootstrap/minibp/obj/minibp.a |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 507 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 508 | build ${g.bootstrap.buildDir}/.bootstrap/minibp/obj/a.out: g.bootstrap.link $ |
| 509 | ${g.bootstrap.buildDir}/.bootstrap/minibp/obj/minibp.a | $ |
| 510 | ${g.bootstrap.linkCmd} |
| 511 | libDirFlags = -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-deptools/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap-bpdoc/pkg -L ${g.bootstrap.buildDir}/.bootstrap/blueprint-bootstrap/pkg |
| 512 | default ${g.bootstrap.buildDir}/.bootstrap/minibp/obj/a.out |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 513 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 514 | build ${g.bootstrap.BinDir}/minibp: g.bootstrap.cp $ |
| 515 | ${g.bootstrap.buildDir}/.bootstrap/minibp/obj/a.out |
| 516 | default ${g.bootstrap.BinDir}/minibp |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 517 | |
| 518 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 519 | # Singleton: bootstrap |
Dan Willemsen | 550eb33 | 2015-09-17 14:16:14 -0700 | [diff] [blame] | 520 | # Factory: github.com/google/blueprint/bootstrap.newSingletonFactory.func1 |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 521 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 522 | rule s.bootstrap.primarybp |
| 523 | command = ${g.bootstrap.BinDir}/minibp --build-primary ${runTests} -m ${g.bootstrap.bootstrapManifest} --timestamp ${timestamp} --timestampdep ${timestampdep} -b ${g.bootstrap.buildDir} -d ${outfile}.d -o ${outfile} ${in} |
| 524 | depfile = ${outfile}.d |
| 525 | description = minibp ${outfile} |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 526 | |
| 527 | rule s.bootstrap.minibp |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 528 | command = ${g.bootstrap.BinDir}/minibp ${runTests} -m ${g.bootstrap.bootstrapManifest} -b ${g.bootstrap.buildDir} -d ${out}.d -o ${out} ${in} |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 529 | depfile = ${out}.d |
| 530 | description = minibp ${out} |
| 531 | generator = true |
| 532 | |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 533 | build ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in $ |
| 534 | ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in.timestamp: $ |
| 535 | s.bootstrap.primarybp ${g.bootstrap.srcDir}/Android.bp | $ |
| 536 | ${g.bootstrap.BinDir}/choosestage ${g.bootstrap.BinDir}/gotestmain $ |
Dan Willemsen | e9862da | 2015-09-18 12:48:23 -0700 | [diff] [blame] | 537 | ${g.bootstrap.BinDir}/gotestrunner ${g.bootstrap.BinDir}/minibp $ |
| 538 | ${g.bootstrap.srcDir}/Android.bp $ |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 539 | ${g.bootstrap.buildDir}/.bootstrap/blueprint/test/github.com/google/blueprint.a $ |
| 540 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-parser/test/github.com/google/blueprint/parser.a $ |
Colin Cross | 7449857 | 2015-11-03 14:44:07 -0800 | [diff] [blame^] | 541 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-pathtools/test/github.com/google/blueprint/pathtools.a $ |
| 542 | ${g.bootstrap.buildDir}/.bootstrap/blueprint-proptools/test/github.com/google/blueprint/proptools.a |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 543 | outfile = ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in |
Dan Willemsen | e5e2033 | 2015-06-23 19:46:20 -0700 | [diff] [blame] | 544 | runTests = -t |
Dan Willemsen | 24f2f8d | 2015-07-15 14:34:02 -0700 | [diff] [blame] | 545 | timestamp = ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in.timestamp |
| 546 | timestampdep = ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in.timestamp.d |
| 547 | default ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in $ |
| 548 | ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in.timestamp |
| 549 | |
| 550 | build ${g.bootstrap.buildDir}/.bootstrap/bootstrap.ninja.in: $ |
| 551 | s.bootstrap.minibp ${g.bootstrap.srcDir}/Android.bp | $ |
| 552 | ${g.bootstrap.bootstrapManifest} ${g.bootstrap.BinDir}/minibp |
| 553 | runTests = -t |
| 554 | default ${g.bootstrap.buildDir}/.bootstrap/bootstrap.ninja.in |
| 555 | |
| 556 | build ${g.bootstrap.buildDir}/.bootstrap/notAFile: phony |
| 557 | default ${g.bootstrap.buildDir}/.bootstrap/notAFile |
| 558 | build ${g.bootstrap.buildDir}/.bootstrap/build.ninja.in: $ |
| 559 | g.bootstrap.chooseStage $ |
| 560 | ${g.bootstrap.buildDir}/.bootstrap/bootstrap.ninja.in $ |
| 561 | ${g.bootstrap.buildDir}/.bootstrap/primary.ninja.in | $ |
| 562 | ${g.bootstrap.chooseStageCmd} ${g.bootstrap.bootstrapManifest} $ |
| 563 | ${g.bootstrap.buildDir}/.bootstrap/notAFile |
| 564 | current = ${g.bootstrap.buildDir}/.bootstrap/bootstrap.ninja.in |
| 565 | default ${g.bootstrap.buildDir}/.bootstrap/build.ninja.in |
| 566 | |
| 567 | build ${g.bootstrap.buildDir}/build.ninja: g.bootstrap.bootstrap $ |
| 568 | ${g.bootstrap.buildDir}/.bootstrap/build.ninja.in | $ |
| 569 | ${g.bootstrap.bootstrapCmd} |
| 570 | default ${g.bootstrap.buildDir}/build.ninja |
Colin Cross | e441b9d | 2015-01-26 16:30:13 -0800 | [diff] [blame] | 571 | |