| OLD | NEW |
| 1 ############################################################################### | 1 ############################################################################### |
| 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
| 5 ############################################################################### | 5 ############################################################################### |
| 6 | 6 |
| 7 # Parameters describing how and where to execute the build. | 7 # Parameters describing how and where to execute the build. |
| 8 # Typical users need only update the following properties: | 8 # Typical users need only update the following properties: |
| 9 # baseLocation - where things you are building against are installed | 9 # baseLocation - where things you are building against are installed |
| 10 # bootclasspath - The base jars to compile against (typicaly rt.jar) | 10 # bootclasspath - The base jars to compile against (typicaly rt.jar) |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 # Whether or not to include debug info in the output jars | 271 # Whether or not to include debug info in the output jars |
| 272 javacDebugInfo=true | 272 javacDebugInfo=true |
| 273 | 273 |
| 274 # Whether or not to fail the build if there are compiler errors | 274 # Whether or not to fail the build if there are compiler errors |
| 275 javacFailOnError=true | 275 javacFailOnError=true |
| 276 | 276 |
| 277 # Enable or disable verbose mode of the compiler | 277 # Enable or disable verbose mode of the compiler |
| 278 javacVerbose=false | 278 javacVerbose=false |
| 279 | 279 |
| 280 # Extra arguments for the compiler. These are specific to the java compiler bein
g used. | 280 # Extra arguments for the compiler. These are specific to the java compiler bein
g used. |
| 281 compilerArg=-warn:none | 281 compilerArg=-g -nowarn |
| 282 | 282 |
| 283 # Default value for the version of the source code. This value is used when comp
iling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or set ja
vacSource in build.properties | 283 # Default value for the version of the source code. This value is used when comp
iling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or set ja
vacSource in build.properties |
| 284 javacSource=1.6 | 284 javacSource=1.6 |
| 285 | 285 |
| 286 # Default value for the version of the byte code targeted. This value is used wh
en compiling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or
set javacTarget in build.properties. | 286 # Default value for the version of the byte code targeted. This value is used wh
en compiling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or
set javacTarget in build.properties. |
| 287 javacTarget=1.6 | 287 javacTarget=1.6 |
| 288 | 288 |
| 289 | 289 |
| OLD | NEW |