OLD | NEW |
1 # Copyright 2010 the V8 project authors. All rights reserved. | 1 # Copyright 2010 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 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 'default': 'off', | 688 'default': 'off', |
689 'help': 'enable heap protection' | 689 'help': 'enable heap protection' |
690 }, | 690 }, |
691 'profilingsupport': { | 691 'profilingsupport': { |
692 'values': ['on', 'off'], | 692 'values': ['on', 'off'], |
693 'default': 'on', | 693 'default': 'on', |
694 'help': 'enable profiling of JavaScript code' | 694 'help': 'enable profiling of JavaScript code' |
695 }, | 695 }, |
696 'cppprofilesprocessor': { | 696 'cppprofilesprocessor': { |
697 'values': ['on', 'off'], | 697 'values': ['on', 'off'], |
698 'default': 'off', | 698 'default': 'on', |
699 'help': 'enable C++ profiles processor' | 699 'help': 'enable C++ profiles processor' |
700 }, | 700 }, |
701 'debuggersupport': { | 701 'debuggersupport': { |
702 'values': ['on', 'off'], | 702 'values': ['on', 'off'], |
703 'default': 'on', | 703 'default': 'on', |
704 'help': 'enable debugging of JavaScript code' | 704 'help': 'enable debugging of JavaScript code' |
705 }, | 705 }, |
706 'soname': { | 706 'soname': { |
707 'values': ['on', 'off'], | 707 'values': ['on', 'off'], |
708 'default': 'off', | 708 'default': 'off', |
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1120 # version of scons. Also, there's a bug in some revisions that | 1120 # version of scons. Also, there's a bug in some revisions that |
1121 # doesn't allow this flag to be set, so we swallow any exceptions. | 1121 # doesn't allow this flag to be set, so we swallow any exceptions. |
1122 # Lovely. | 1122 # Lovely. |
1123 try: | 1123 try: |
1124 SetOption('warn', 'no-deprecated') | 1124 SetOption('warn', 'no-deprecated') |
1125 except: | 1125 except: |
1126 pass | 1126 pass |
1127 | 1127 |
1128 | 1128 |
1129 Build() | 1129 Build() |
OLD | NEW |