| OLD | NEW |
| 1 # The primary build directory under which other directories are created | 1 # The primary build directory under which other directories are created |
| 2 # Not referenced directly in the build scripts, but rather for declarations belo
w | 2 # Not referenced directly in the build scripts, but rather for declarations belo
w |
| 3 # >>> This should be defined in a <user>.properties file | 3 # >>> This should be defined in a <user>.properties file |
| 4 #build.root = /usr/local/google/build-dart | 4 #build.root = /usr/local/google/build-dart |
| 5 | 5 |
| 6 # A directory to which files are downloaded | 6 # A directory to which files are downloaded |
| 7 # Typically this is on disk (not RAM disk) | 7 # Typically this is on disk (not RAM disk) |
| 8 build.downloads = ${build.root}/downloads | 8 build.downloads = ${build.root}/downloads |
| 9 | 9 |
| 10 # Temporary build directory under which the PDE build takes place | 10 # Temporary build directory under which the PDE build takes place |
| 11 build.tmp = ${build.root}/tmp | 11 build.tmp = ${build.root}/tmp |
| 12 | 12 |
| 13 # Location of the PDE runtime Eclipse | 13 # Location of the PDE runtime Eclipse |
| 14 build.runtime = ${build.tmp}/runtime | 14 build.runtime = ${build.tmp}/runtime |
| 15 | 15 |
| 16 # Location of the PDE target Eclipse | 16 # Location of the PDE target Eclipse |
| 17 build.target = ${build.tmp}/target | 17 build.target = ${build.tmp}/target |
| 18 | 18 |
| 19 # Location of the code that is to be build in PDE format | 19 # Location of the code that is to be build in PDE format |
| 20 build.stage = ${build.tmp}/build | 20 build.stage = ${build.tmp}/build |
| 21 | 21 |
| 22 # the location of the staged plugins directory of the files to build | 22 # the location of the staged plugins directory of the files to build |
| 23 build.stage.plugins = ${build.stage}/plugins | 23 build.stage.plugins = ${build.stage}/plugins |
| 24 | 24 |
| 25 # the location of the staged features directory of the files to build | 25 # the location of the staged features directory of the files to build |
| 26 build.stage.features = ${build.stage}/features | 26 build.stage.features = ${build.stage}/features |
| 27 | 27 |
| 28 # Staging directory for "libraries" and "samples" |
| 29 build.stage.include.dir = ${build.stage.features}/com.google.dart.tools.d
eploy.feature/include |
| 30 |
| 28 # Directory into which the build output is placed | 31 # Directory into which the build output is placed |
| 29 build.out = ${build.root}/out | 32 build.out = ${build.root}/out |
| 30 | 33 |
| 31 #the Eclipse version of the runtime Eclipse | 34 #the Eclipse version of the runtime Eclipse |
| 32 build.runtime.eclipse.version = 3.7 | 35 build.runtime.eclipse.version = 3.7 |
| 33 #the Eclipse version of the runtime Eclipse | 36 #the Eclipse version of the runtime Eclipse |
| 34 build.runtime.eclipse.version.short = 37 | 37 build.runtime.eclipse.version.short = 37 |
| 35 | 38 |
| 36 # the Eclipse version of the target Eclipse | 39 # the Eclipse version of the target Eclipse |
| 37 build.target.eclipse.version = 3.7 | 40 build.target.eclipse.version = 3.7 |
| 38 # the Eclipse version of the target Eclipse | 41 # the Eclipse version of the target Eclipse |
| 39 build.target.eclipse.version.short = 37 | 42 build.target.eclipse.version.short = 37 |
| 40 | 43 |
| 41 #The chip architecture | 44 #The chip architecture |
| 42 build.eclipse.arch = x86 | 45 build.eclipse.arch = x86 |
| OLD | NEW |