| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 'werror%': '-Werror', | 64 'werror%': '-Werror', |
| 65 'conditions': [ | 65 'conditions': [ |
| 66 ['(v8_target_arch=="arm" and host_arch!="arm") or \ | 66 ['(v8_target_arch=="arm" and host_arch!="arm") or \ |
| 67 (v8_target_arch=="mips" and host_arch!="mips") or \ | 67 (v8_target_arch=="mips" and host_arch!="mips") or \ |
| 68 (v8_target_arch=="x64" and host_arch!="x64")', { | 68 (v8_target_arch=="x64" and host_arch!="x64")', { |
| 69 'want_separate_host_toolset': 1, | 69 'want_separate_host_toolset': 1, |
| 70 }, { | 70 }, { |
| 71 'want_separate_host_toolset': 0, | 71 'want_separate_host_toolset': 0, |
| 72 }], | 72 }], |
| 73 ], | 73 ], |
| 74 # Default ARM variable settings. |
| 75 'armv7%': 1, |
| 76 'arm_neon%': 0, |
| 77 'arm_fpu%': 'vfpv3', |
| 74 }, | 78 }, |
| 75 'target_defaults': { | 79 'target_defaults': { |
| 76 'default_configuration': 'Debug', | 80 'default_configuration': 'Debug', |
| 77 'configurations': { | 81 'configurations': { |
| 78 'Debug': { | 82 'Debug': { |
| 79 'cflags': [ '-g', '-O0' ], | 83 'cflags': [ '-g', '-O0' ], |
| 80 }, | 84 }, |
| 81 }, | 85 }, |
| 82 }, | 86 }, |
| 83 'conditions': [ | 87 'conditions': [ |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 }, | 206 }, |
| 203 'target_conditions': [ | 207 'target_conditions': [ |
| 204 ['_type!="static_library"', { | 208 ['_type!="static_library"', { |
| 205 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 209 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
| 206 }], | 210 }], |
| 207 ], # target_conditions | 211 ], # target_conditions |
| 208 }, # target_defaults | 212 }, # target_defaults |
| 209 }], # OS=="mac" | 213 }], # OS=="mac" |
| 210 ], | 214 ], |
| 211 } | 215 } |
| OLD | NEW |