| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 'armv7%': 1, | 80 'armv7%': 1, |
| 81 'arm_neon%': 0, | 81 'arm_neon%': 0, |
| 82 'arm_fpu%': 'vfpv3', | 82 'arm_fpu%': 'vfpv3', |
| 83 }, | 83 }, |
| 84 'target_defaults': { | 84 'target_defaults': { |
| 85 'default_configuration': 'Debug', | 85 'default_configuration': 'Debug', |
| 86 'configurations': { | 86 'configurations': { |
| 87 'Debug': { | 87 'Debug': { |
| 88 'cflags': [ '-g', '-O0' ], | 88 'cflags': [ '-g', '-O0' ], |
| 89 }, | 89 }, |
| 90 'Release': { |
| 91 # Xcode insists on this empty entry. |
| 92 }, |
| 90 }, | 93 }, |
| 91 }, | 94 }, |
| 92 'conditions': [ | 95 'conditions': [ |
| 93 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ | 96 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" \ |
| 94 or OS=="netbsd"', { | 97 or OS=="netbsd"', { |
| 95 'target_defaults': { | 98 'target_defaults': { |
| 96 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', | 99 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', |
| 97 '-Wnon-virtual-dtor', '-pthread', '-fno-rtti', | 100 '-Wnon-virtual-dtor', '-pthread', '-fno-rtti', |
| 98 '-fno-exceptions', '-pedantic' ], | 101 '-fno-exceptions', '-pedantic' ], |
| 99 'ldflags': [ '-pthread', ], | 102 'ldflags': [ '-pthread', ], |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 }, | 215 }, |
| 213 'target_conditions': [ | 216 'target_conditions': [ |
| 214 ['_type!="static_library"', { | 217 ['_type!="static_library"', { |
| 215 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 218 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
| 216 }], | 219 }], |
| 217 ], # target_conditions | 220 ], # target_conditions |
| 218 }, # target_defaults | 221 }, # target_defaults |
| 219 }], # OS=="mac" | 222 }], # OS=="mac" |
| 220 ], | 223 ], |
| 221 } | 224 } |
| OLD | NEW |