| OLD | NEW |
| 1 # Copyright 2009 the V8 project authors. All rights reserved. | 1 # Copyright 2009 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 'conditions': [ | 80 'conditions': [ |
| 81 ['OS=="linux"', { | 81 ['OS=="linux"', { |
| 82 'cflags!': [ | 82 'cflags!': [ |
| 83 '-O2', | 83 '-O2', |
| 84 ], | 84 ], |
| 85 'cflags': [ | 85 'cflags': [ |
| 86 '-fomit-frame-pointer', | 86 '-fomit-frame-pointer', |
| 87 '-O3', | 87 '-O3', |
| 88 ], | 88 ], |
| 89 'conditions': [ | 89 'conditions': [ |
| 90 [ 'gcc_version=="44"', { | 90 [ 'gcc_version==44', { |
| 91 'cflags': [ | 91 'cflags': [ |
| 92 # Avoid gcc 4.4 strict aliasing issues in dtoa.c | 92 # Avoid gcc 4.4 strict aliasing issues in dtoa.c |
| 93 '-fno-strict-aliasing', | 93 '-fno-strict-aliasing', |
| 94 # Avoid crashes with gcc 4.4 in the v8 test suite. | 94 # Avoid crashes with gcc 4.4 in the v8 test suite. |
| 95 '-fno-tree-vrp', | 95 '-fno-tree-vrp', |
| 96 ], | 96 ], |
| 97 }], | 97 }], |
| 98 ], | 98 ], |
| 99 }], | 99 }], |
| 100 ['OS=="mac"', { | 100 ['OS=="mac"', { |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 ], | 570 ], |
| 571 'conditions': [ | 571 'conditions': [ |
| 572 [ 'OS=="win"', { | 572 [ 'OS=="win"', { |
| 573 # This could be gotten by not setting chromium_code, if that's OK. | 573 # This could be gotten by not setting chromium_code, if that's OK. |
| 574 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 574 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
| 575 }], | 575 }], |
| 576 ], | 576 ], |
| 577 }, | 577 }, |
| 578 ], | 578 ], |
| 579 } | 579 } |
| OLD | NEW |