| 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 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 { | 30 { |
| 31 # We need to include toolchain.gypi here for third-party sources that don't | 31 # We need to include toolchain.gypi here for third-party sources that don't |
| 32 # directly include it themselves. | 32 # directly include it themselves. |
| 33 'includes': ['toolchain.gypi'], | 33 'includes': ['toolchain.gypi'], |
| 34 'variables': { | 34 'variables': { |
| 35 'component%': 'static_library', | 35 'component%': 'static_library', |
| 36 'clang%': 0, | 36 'clang%': 0, |
| 37 'visibility%': 'hidden', | 37 'visibility%': 'hidden', |
| 38 'v8_enable_backtrace%': 0, | 38 'v8_enable_backtrace%': 0, |
| 39 'v8_enable_i18n_support%': 0, | 39 'v8_enable_i18n_support%': 1, |
| 40 'msvs_multi_core_compile%': '1', | 40 'msvs_multi_core_compile%': '1', |
| 41 'mac_deployment_target%': '10.5', | 41 'mac_deployment_target%': '10.5', |
| 42 'variables': { | 42 'variables': { |
| 43 'variables': { | 43 'variables': { |
| 44 'variables': { | 44 'variables': { |
| 45 'conditions': [ | 45 'conditions': [ |
| 46 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or \ | 46 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or \ |
| 47 OS=="netbsd" or OS=="mac"', { | 47 OS=="netbsd" or OS=="mac"', { |
| 48 # This handles the Unix platforms we generally deal with. | 48 # This handles the Unix platforms we generally deal with. |
| 49 # Anything else gets passed through, which probably won't work | 49 # Anything else gets passed through, which probably won't work |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 }, | 279 }, |
| 280 'target_conditions': [ | 280 'target_conditions': [ |
| 281 ['_type!="static_library"', { | 281 ['_type!="static_library"', { |
| 282 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 282 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
| 283 }], | 283 }], |
| 284 ], # target_conditions | 284 ], # target_conditions |
| 285 }, # target_defaults | 285 }, # target_defaults |
| 286 }], # OS=="mac" | 286 }], # OS=="mac" |
| 287 ], | 287 ], |
| 288 } | 288 } |
| OLD | NEW |