| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 # On by default for x64 Linux. | 124 # On by default for x64 Linux. |
| 125 ['OS=="linux" and target_arch=="x64"', { | 125 ['OS=="linux" and target_arch=="x64"', { |
| 126 'linux_use_gold_flags%': 1, | 126 'linux_use_gold_flags%': 1, |
| 127 }, { | 127 }, { |
| 128 'linux_use_gold_flags%': 0, | 128 'linux_use_gold_flags%': 0, |
| 129 }], | 129 }], |
| 130 ], | 130 ], |
| 131 | 131 |
| 132 # Link-Time Optimizations | 132 # Link-Time Optimizations |
| 133 'use_lto%': 0, | 133 'use_lto%': 0, |
| 134 |
| 135 # Indicates if gcmole tools are downloaded by a hook. |
| 136 'gcmole%': 0, |
| 134 }, | 137 }, |
| 135 'conditions': [ | 138 'conditions': [ |
| 136 ['host_arch=="ia32" or host_arch=="x64" or \ | 139 ['host_arch=="ia32" or host_arch=="x64" or \ |
| 137 host_arch=="ppc" or host_arch=="ppc64" or \ | 140 host_arch=="ppc" or host_arch=="ppc64" or \ |
| 138 host_arch=="s390" or host_arch=="s390x" or \ | 141 host_arch=="s390" or host_arch=="s390x" or \ |
| 139 clang==1', { | 142 clang==1', { |
| 140 'variables': { | 143 'variables': { |
| 141 'host_cxx_is_biarch%': 1, | 144 'host_cxx_is_biarch%': 1, |
| 142 }, | 145 }, |
| 143 }, { | 146 }, { |
| (...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1385 ], | 1388 ], |
| 1386 }, | 1389 }, |
| 1387 'Release_x64': { | 1390 'Release_x64': { |
| 1388 'inherit_from': ['ReleaseBase'], | 1391 'inherit_from': ['ReleaseBase'], |
| 1389 }, | 1392 }, |
| 1390 }], | 1393 }], |
| 1391 ], | 1394 ], |
| 1392 }, # configurations | 1395 }, # configurations |
| 1393 }, # target_defaults | 1396 }, # target_defaults |
| 1394 } | 1397 } |
| OLD | NEW |