| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'clang%': 1, | 120 'clang%': 1, |
| 121 }, { | 121 }, { |
| 122 'clang%': 0, | 122 'clang%': 0, |
| 123 }], | 123 }], |
| 124 ], | 124 ], |
| 125 # Default ARM variable settings. | 125 # Default ARM variable settings. |
| 126 'arm_version%': 'default', | 126 'arm_version%': 'default', |
| 127 'arm_fpu%': 'vfpv3', | 127 'arm_fpu%': 'vfpv3', |
| 128 'arm_float_abi%': 'default', | 128 'arm_float_abi%': 'default', |
| 129 'arm_thumb': 'default', | 129 'arm_thumb': 'default', |
| 130 |
| 131 # Default MIPS variable settings. |
| 132 'mips_arch_variant%': 'r2', |
| 133 # Possible values fp32, fp64, fpxx. |
| 134 # fp32 - 32 32-bit FPU registers are available, doubles are placed in |
| 135 # register pairs. |
| 136 # fp64 - 32 64-bit FPU registers are available. |
| 137 # fpxx - compatibility mode, it chooses fp32 or fp64 depending on runtime |
| 138 # detection |
| 139 'mips_fpu_mode%': 'fp32', |
| 130 }, | 140 }, |
| 131 'target_defaults': { | 141 'target_defaults': { |
| 132 'variables': { | 142 'variables': { |
| 133 'v8_code%': '<(v8_code)', | 143 'v8_code%': '<(v8_code)', |
| 134 }, | 144 }, |
| 135 'default_configuration': 'Debug', | 145 'default_configuration': 'Debug', |
| 136 'configurations': { | 146 'configurations': { |
| 137 'DebugBaseCommon': { | 147 'DebugBaseCommon': { |
| 138 'cflags': [ '-g', '-O0' ], | 148 'cflags': [ '-g', '-O0' ], |
| 139 'conditions': [ | 149 'conditions': [ |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 ], | 427 ], |
| 418 'target_conditions': [ | 428 'target_conditions': [ |
| 419 ['_type!="static_library"', { | 429 ['_type!="static_library"', { |
| 420 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 430 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
| 421 }], | 431 }], |
| 422 ], # target_conditions | 432 ], # target_conditions |
| 423 }, # target_defaults | 433 }, # target_defaults |
| 424 }], # OS=="mac" | 434 }], # OS=="mac" |
| 425 ], | 435 ], |
| 426 } | 436 } |
| OLD | NEW |