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 24 matching lines...) Expand all Loading... |
35 'component%': 'static_library', | 35 'component%': 'static_library', |
36 'clang_xcode%': 0, | 36 'clang_xcode%': 0, |
37 # Track where uninitialized memory originates from. From fastest to | 37 # Track where uninitialized memory originates from. From fastest to |
38 # slowest: 0 - no tracking, 1 - track only the initial allocation site, 2 | 38 # slowest: 0 - no tracking, 1 - track only the initial allocation site, 2 |
39 # - track the chain of stores leading from allocation site to use site. | 39 # - track the chain of stores leading from allocation site to use site. |
40 'msan_track_origins%': 2, | 40 'msan_track_origins%': 2, |
41 'visibility%': 'hidden', | 41 'visibility%': 'hidden', |
42 'v8_enable_backtrace%': 0, | 42 'v8_enable_backtrace%': 0, |
43 'v8_enable_i18n_support%': 1, | 43 'v8_enable_i18n_support%': 1, |
44 'v8_deprecation_warnings': 1, | 44 'v8_deprecation_warnings': 1, |
45 # TODO(jochen): Turn this on. | 45 'v8_imminent_deprecation_warnings': 1, |
46 'v8_imminent_deprecation_warnings%': 0, | |
47 'msvs_multi_core_compile%': '1', | 46 'msvs_multi_core_compile%': '1', |
48 'mac_deployment_target%': '10.5', | 47 'mac_deployment_target%': '10.5', |
49 'release_extra_cflags%': '', | 48 'release_extra_cflags%': '', |
50 'variables': { | 49 'variables': { |
51 'variables': { | 50 'variables': { |
52 'variables': { | 51 'variables': { |
53 'conditions': [ | 52 'conditions': [ |
54 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or \ | 53 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or \ |
55 OS=="netbsd" or OS=="mac" or OS=="qnx" or OS=="aix"', { | 54 OS=="netbsd" or OS=="mac" or OS=="qnx" or OS=="aix"', { |
56 # This handles the Unix platforms we generally deal with. | 55 # This handles the Unix platforms we generally deal with. |
(...skipping 1281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1338 '-fsanitize=cfi-vcall', | 1337 '-fsanitize=cfi-vcall', |
1339 '-fsanitize=cfi-derived-cast', | 1338 '-fsanitize=cfi-derived-cast', |
1340 '-fsanitize=cfi-unrelated-cast', | 1339 '-fsanitize=cfi-unrelated-cast', |
1341 ], | 1340 ], |
1342 }], | 1341 }], |
1343 ], | 1342 ], |
1344 }, | 1343 }, |
1345 }], | 1344 }], |
1346 ], | 1345 ], |
1347 } | 1346 } |
OLD | NEW |