| 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 25 matching lines...) Expand all Loading... |
| 36 'clang_dir%': 'third_party/llvm-build/Release+Asserts', | 36 'clang_dir%': 'third_party/llvm-build/Release+Asserts', |
| 37 'clang_xcode%': 0, | 37 'clang_xcode%': 0, |
| 38 # Track where uninitialized memory originates from. From fastest to | 38 # Track where uninitialized memory originates from. From fastest to |
| 39 # slowest: 0 - no tracking, 1 - track only the initial allocation site, 2 | 39 # slowest: 0 - no tracking, 1 - track only the initial allocation site, 2 |
| 40 # - track the chain of stores leading from allocation site to use site. | 40 # - track the chain of stores leading from allocation site to use site. |
| 41 'msan_track_origins%': 1, | 41 'msan_track_origins%': 1, |
| 42 'visibility%': 'hidden', | 42 'visibility%': 'hidden', |
| 43 'v8_enable_backtrace%': 0, | 43 'v8_enable_backtrace%': 0, |
| 44 'v8_enable_i18n_support%': 1, | 44 'v8_enable_i18n_support%': 1, |
| 45 'v8_deprecation_warnings': 1, | 45 'v8_deprecation_warnings': 1, |
| 46 # TODO(jochen): Turn this on. |
| 47 'v8_imminent_deprecation_warnings': 0, |
| 46 'msvs_multi_core_compile%': '1', | 48 'msvs_multi_core_compile%': '1', |
| 47 'mac_deployment_target%': '10.5', | 49 'mac_deployment_target%': '10.5', |
| 48 'release_extra_cflags%': '', | 50 'release_extra_cflags%': '', |
| 49 'variables': { | 51 'variables': { |
| 50 'variables': { | 52 'variables': { |
| 51 'variables': { | 53 'variables': { |
| 52 'conditions': [ | 54 'conditions': [ |
| 53 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or \ | 55 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or \ |
| 54 OS=="netbsd" or OS=="mac" or OS=="qnx" or OS=="aix"', { | 56 OS=="netbsd" or OS=="mac" or OS=="qnx" or OS=="aix"', { |
| 55 # This handles the Unix platforms we generally deal with. | 57 # This handles the Unix platforms we generally deal with. |
| (...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { | 639 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { |
| 638 'make_global_settings': [ | 640 'make_global_settings': [ |
| 639 ['CC_wrapper', '<(gomadir)/gomacc'], | 641 ['CC_wrapper', '<(gomadir)/gomacc'], |
| 640 ['CXX_wrapper', '<(gomadir)/gomacc'], | 642 ['CXX_wrapper', '<(gomadir)/gomacc'], |
| 641 ['CC.host_wrapper', '<(gomadir)/gomacc'], | 643 ['CC.host_wrapper', '<(gomadir)/gomacc'], |
| 642 ['CXX.host_wrapper', '<(gomadir)/gomacc'], | 644 ['CXX.host_wrapper', '<(gomadir)/gomacc'], |
| 643 ], | 645 ], |
| 644 }], | 646 }], |
| 645 ], | 647 ], |
| 646 } | 648 } |
| OLD | NEW |