| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 'os_posix%': 1, | 110 'os_posix%': 1, |
| 111 }], | 111 }], |
| 112 ['(v8_target_arch=="ia32" or v8_target_arch=="x64") and \ | 112 ['(v8_target_arch=="ia32" or v8_target_arch=="x64") and \ |
| 113 (OS=="linux" or OS=="mac")', { | 113 (OS=="linux" or OS=="mac")', { |
| 114 'v8_enable_gdbjit%': 1, | 114 'v8_enable_gdbjit%': 1, |
| 115 }, { | 115 }, { |
| 116 'v8_enable_gdbjit%': 0, | 116 'v8_enable_gdbjit%': 0, |
| 117 }], | 117 }], |
| 118 ], | 118 ], |
| 119 # Default ARM variable settings. | 119 # Default ARM variable settings. |
| 120 'armv7%': 'default', | 120 'arm_version%': '7', |
| 121 'arm_neon%': 0, | 121 'arm_neon%': 0, |
| 122 'arm_fpu%': 'vfpv3', | 122 'arm_fpu%': 'vfpv3', |
| 123 'arm_float_abi%': 'default', | 123 'arm_float_abi%': 'default', |
| 124 'arm_thumb': 'default', | 124 'arm_thumb': 'default', |
| 125 }, | 125 }, |
| 126 'target_defaults': { | 126 'target_defaults': { |
| 127 'variables': { | 127 'variables': { |
| 128 'v8_code%': '<(v8_code)', | 128 'v8_code%': '<(v8_code)', |
| 129 }, | 129 }, |
| 130 'default_configuration': 'Debug', | 130 'default_configuration': 'Debug', |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 ], | 300 ], |
| 301 'target_conditions': [ | 301 'target_conditions': [ |
| 302 ['_type!="static_library"', { | 302 ['_type!="static_library"', { |
| 303 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 303 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
| 304 }], | 304 }], |
| 305 ], # target_conditions | 305 ], # target_conditions |
| 306 }, # target_defaults | 306 }, # target_defaults |
| 307 }], # OS=="mac" | 307 }], # OS=="mac" |
| 308 ], | 308 ], |
| 309 } | 309 } |
| OLD | NEW |