| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 ], | 695 ], |
| 696 }, | 696 }, |
| 697 'VCLinkerTool': { | 697 'VCLinkerTool': { |
| 698 'LinkIncremental': '2', | 698 'LinkIncremental': '2', |
| 699 }, | 699 }, |
| 700 }, | 700 }, |
| 701 'conditions': [ | 701 'conditions': [ |
| 702 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" or \ | 702 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd" or \ |
| 703 OS=="qnx"', { | 703 OS=="qnx"', { |
| 704 'cflags!': [ | 704 'cflags!': [ |
| 705 '-O0', | |
| 706 '-O3', | 705 '-O3', |
| 707 '-O2', | 706 '-O2', |
| 708 '-O1', | 707 '-O1', |
| 709 '-Os', | 708 '-Os', |
| 710 ], | 709 ], |
| 711 'cflags': [ | 710 'cflags': [ |
| 712 '-fdata-sections', | 711 '-fdata-sections', |
| 713 '-ffunction-sections', | 712 '-ffunction-sections', |
| 714 ], | 713 ], |
| 715 }], | 714 }], |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 975 'OptimizeReferences': '2', | 974 'OptimizeReferences': '2', |
| 976 'EnableCOMDATFolding': '2', | 975 'EnableCOMDATFolding': '2', |
| 977 }, | 976 }, |
| 978 }, | 977 }, |
| 979 }], # OS=="win" | 978 }], # OS=="win" |
| 980 ], # conditions | 979 ], # conditions |
| 981 }, # Release | 980 }, # Release |
| 982 }, # configurations | 981 }, # configurations |
| 983 }, # target_defaults | 982 }, # target_defaults |
| 984 } | 983 } |
| OLD | NEW |