| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 '-fno-strict-aliasing', | 94 '-fno-strict-aliasing', |
| 95 # Avoid crashes with gcc 4.4 in the v8 test suite. | 95 # Avoid crashes with gcc 4.4 in the v8 test suite. |
| 96 '-fno-tree-vrp', | 96 '-fno-tree-vrp', |
| 97 ], | 97 ], |
| 98 }], | 98 }], |
| 99 ], | 99 ], |
| 100 'cflags_cc': [ | 100 'cflags_cc': [ |
| 101 '-fno-rtti', | 101 '-fno-rtti', |
| 102 ], | 102 ], |
| 103 }], | 103 }], |
| 104 ['OS=="mac"', { |
| 105 'xcode_settings': { |
| 106 'GCC_OPTIMIZATION_LEVEL': '3', |
| 107 }, |
| 108 }], |
| 104 ['OS=="win"', { | 109 ['OS=="win"', { |
| 105 'msvs_configuration_attributes': { | 110 'msvs_configuration_attributes': { |
| 106 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', | 111 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', |
| 107 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | 112 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
| 108 'CharacterSet': '1', | 113 'CharacterSet': '1', |
| 109 }, | 114 }, |
| 110 'msvs_settings': { | 115 'msvs_settings': { |
| 111 'VCCLCompilerTool': { | 116 'VCCLCompilerTool': { |
| 112 'RuntimeLibrary': '0', | 117 'RuntimeLibrary': '0', |
| 113 'Optimizations': '2', | 118 'Optimizations': '2', |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 ], | 580 ], |
| 576 'conditions': [ | 581 'conditions': [ |
| 577 [ 'OS=="win"', { | 582 [ 'OS=="win"', { |
| 578 # This could be gotten by not setting chromium_code, if that's OK. | 583 # This could be gotten by not setting chromium_code, if that's OK. |
| 579 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 584 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
| 580 }], | 585 }], |
| 581 ], | 586 ], |
| 582 }, | 587 }, |
| 583 ], | 588 ], |
| 584 } | 589 } |
| OLD | NEW |