Chromium Code Reviews| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 59 'V8_NATIVE_REGEXP', | 59 'V8_NATIVE_REGEXP', |
| 60 ], | 60 ], |
| 61 }], | 61 }], |
| 62 ], | 62 ], |
| 63 'configurations': { | 63 'configurations': { |
| 64 'Debug': { | 64 'Debug': { |
| 65 'defines': [ | 65 'defines': [ |
| 66 'DEBUG', | 66 'DEBUG', |
| 67 '_DEBUG', | 67 '_DEBUG', |
| 68 'ENABLE_DISASSEMBLER', | 68 'ENABLE_DISASSEMBLER', |
| 69 'V8_ENABLE_CHECKS' | |
| 69 ], | 70 ], |
| 70 'msvs_settings': { | 71 'msvs_settings': { |
| 71 'VCCLCompilerTool': { | 72 'VCCLCompilerTool': { |
| 72 'Optimizations': '0', | 73 'Optimizations': '0', |
| 73 'RuntimeLibrary': '1', | 74 'RuntimeLibrary': '1', |
| 74 }, | 75 }, |
| 75 'VCLinkerTool': { | 76 'VCLinkerTool': { |
| 76 'LinkIncremental': '2', | 77 'LinkIncremental': '2', |
| 77 }, | 78 }, |
| 78 }, | 79 }, |
| 79 }, | 80 }, |
| 80 'Release': { | 81 'Release': { |
| 81 'conditions': [ | 82 'conditions': [ |
| 82 ['OS=="linux"', { | 83 ['OS=="linux"', { |
| 83 'cflags!': [ | 84 'cflags!': [ |
| 84 '-O2', | 85 '-O2', |
| 85 ], | 86 ], |
| 86 'cflags': [ | 87 'cflags': [ |
| 87 '-fomit-frame-pointer', | 88 '-g', |
|
Mads Ager (chromium)
2009/08/26 06:22:20
Edit left over from testing? Remove.
Christian Plesner Hansen
2009/08/26 10:31:06
Whoops!
| |
| 88 '-O3', | 89 '-O3', |
| 89 ], | 90 ], |
| 90 'conditions': [ | 91 'conditions': [ |
| 91 [ 'gcc_version=="44"', { | 92 [ 'gcc_version=="44"', { |
| 92 'cflags': [ | 93 'cflags': [ |
| 93 # Avoid gcc 4.4 strict aliasing issues in dtoa.c | 94 # Avoid gcc 4.4 strict aliasing issues in dtoa.c |
| 94 '-fno-strict-aliasing', | 95 '-fno-strict-aliasing', |
| 95 # Avoid crashes with gcc 4.4 in the v8 test suite. | 96 # Avoid crashes with gcc 4.4 in the v8 test suite. |
| 96 '-fno-tree-vrp', | 97 '-fno-tree-vrp', |
| 97 ], | 98 ], |
| (...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 577 ], | 578 ], |
| 578 'conditions': [ | 579 'conditions': [ |
| 579 [ 'OS=="win"', { | 580 [ 'OS=="win"', { |
| 580 # This could be gotten by not setting chromium_code, if that's OK. | 581 # This could be gotten by not setting chromium_code, if that's OK. |
| 581 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 582 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
| 582 }], | 583 }], |
| 583 ], | 584 ], |
| 584 }, | 585 }, |
| 585 ], | 586 ], |
| 586 } | 587 } |
| OLD | NEW |