| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 ], | 145 ], |
| 146 }], | 146 }], |
| 147 [ 'v8_can_use_vfp3_instructions=="true"', { | 147 [ 'v8_can_use_vfp3_instructions=="true"', { |
| 148 'defines': [ | 148 'defines': [ |
| 149 'CAN_USE_VFP3_INSTRUCTIONS', | 149 'CAN_USE_VFP3_INSTRUCTIONS', |
| 150 ], | 150 ], |
| 151 }], | 151 }], |
| 152 [ 'v8_use_arm_eabi_hardfloat=="true"', { | 152 [ 'v8_use_arm_eabi_hardfloat=="true"', { |
| 153 'defines': [ | 153 'defines': [ |
| 154 'USE_EABI_HARDFLOAT=1', | 154 'USE_EABI_HARDFLOAT=1', |
| 155 'CAN_USE_VFP_INSTRUCTIONS', | 155 'CAN_USE_VFP3_INSTRUCTIONS', |
| 156 ], | 156 ], |
| 157 'target_conditions': [ | 157 'target_conditions': [ |
| 158 ['_toolset=="target"', { | 158 ['_toolset=="target"', { |
| 159 'cflags': ['-mfloat-abi=hard',], | 159 'cflags': ['-mfloat-abi=hard',], |
| 160 }], | 160 }], |
| 161 ], | 161 ], |
| 162 }, { | 162 }, { |
| 163 'defines': [ | 163 'defines': [ |
| 164 'USE_EABI_HARDFLOAT=0', | 164 'USE_EABI_HARDFLOAT=0', |
| 165 ], | 165 ], |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 'OptimizeReferences': '2', | 421 'OptimizeReferences': '2', |
| 422 'EnableCOMDATFolding': '2', | 422 'EnableCOMDATFolding': '2', |
| 423 }, | 423 }, |
| 424 }, | 424 }, |
| 425 }], # OS=="win" | 425 }], # OS=="win" |
| 426 ], # conditions | 426 ], # conditions |
| 427 }, # Release | 427 }, # Release |
| 428 }, # configurations | 428 }, # configurations |
| 429 }, # target_defaults | 429 }, # target_defaults |
| 430 } | 430 } |
| OLD | NEW |