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 19 matching lines...) Expand all Loading... | |
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%': 1, | 39 'v8_enable_i18n_support%': 1, |
40 'v8_deprecation_warnings': 1, | |
Michael Achenbach
2013/11/22 10:14:13
Does that not need a % to be overwritable?
jochen (gone - plz use gerrit)
2013/11/22 10:19:18
the default in features.gypi is 0. If I make this
| |
40 'msvs_multi_core_compile%': '1', | 41 'msvs_multi_core_compile%': '1', |
41 'mac_deployment_target%': '10.5', | 42 'mac_deployment_target%': '10.5', |
42 'variables': { | 43 'variables': { |
43 'variables': { | 44 'variables': { |
44 'variables': { | 45 'variables': { |
45 'conditions': [ | 46 'conditions': [ |
46 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or \ | 47 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or \ |
47 OS=="netbsd" or OS=="mac"', { | 48 OS=="netbsd" or OS=="mac"', { |
48 # This handles the Unix platforms we generally deal with. | 49 # This handles the Unix platforms we generally deal with. |
49 # Anything else gets passed through, which probably won't work | 50 # Anything else gets passed through, which probably won't work |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
293 }, | 294 }, |
294 'target_conditions': [ | 295 'target_conditions': [ |
295 ['_type!="static_library"', { | 296 ['_type!="static_library"', { |
296 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 297 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
297 }], | 298 }], |
298 ], # target_conditions | 299 ], # target_conditions |
299 }, # target_defaults | 300 }, # target_defaults |
300 }], # OS=="mac" | 301 }], # OS=="mac" |
301 ], | 302 ], |
302 } | 303 } |
OLD | NEW |