| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 'VCCLCompilerTool': { | 70 'VCCLCompilerTool': { |
| 71 'Optimizations': '0', | 71 'Optimizations': '0', |
| 72 'RuntimeLibrary': '1', | 72 'RuntimeLibrary': '1', |
| 73 }, | 73 }, |
| 74 'VCLinkerTool': { | 74 'VCLinkerTool': { |
| 75 'LinkIncremental': '2', | 75 'LinkIncremental': '2', |
| 76 }, | 76 }, |
| 77 }, | 77 }, |
| 78 }, | 78 }, |
| 79 'Release': { | 79 'Release': { |
| 80 'defines': [ |
| 81 'DEBUG', |
| 82 '_DEBUG' |
| 83 ], |
| 80 'conditions': [ | 84 'conditions': [ |
| 81 ['OS=="linux"', { | 85 ['OS=="linux"', { |
| 82 'cflags!': [ | 86 'cflags!': [ |
| 83 '-O2', | 87 '-O2', |
| 84 '-Os', | 88 '-Os', |
| 85 ], | 89 ], |
| 86 'cflags': [ | 90 'cflags': [ |
| 87 '-fomit-frame-pointer', | 91 '-fomit-frame-pointer', |
| 88 '-O3', | 92 '-O3', |
| 89 ], | 93 ], |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 ], | 615 ], |
| 612 'conditions': [ | 616 'conditions': [ |
| 613 [ 'OS=="win"', { | 617 [ 'OS=="win"', { |
| 614 # This could be gotten by not setting chromium_code, if that's OK. | 618 # This could be gotten by not setting chromium_code, if that's OK. |
| 615 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 619 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
| 616 }], | 620 }], |
| 617 ], | 621 ], |
| 618 }, | 622 }, |
| 619 ], | 623 ], |
| 620 } | 624 } |
| OLD | NEW |